-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jupyter server not starting in a docker container #2677
Comments
Same issue here, on remote container |
Not sure how the update is causing this problem, but it sounds like this issue here: The logs show this:
|
I saw this issue, but I corrected the /etc/hosts and the error persists... That's why I started a Jupyter server manually and connected to vscode. My concern is the performance issue, the vscode crashed several times using the same images and code as before the update. |
Can you give more details on this? Do you have code that repros the issue? What was the output you saw? |
Same issue here - when I try to run any code (e.g.
I rolled back to the previous version of the python extension and that still works fine. I'm running inside an ubuntu docker container on Windows running Hyper-V. VScode details copied from "About": |
@Rockgecko do you have also have the I wonder if the debugger is perhaps taking a port that jupyter is trying to use. Additionally can somebody send me the output of the 'Python' output tab from it working and it not working? We did make some minor changes around jupyter startup, but we can't repro your issue on any machine here. I'd like to check if the jupyter startup args are different between it working and not working. Thanks. |
I don't see the OSError anywhere.
This is the output from the Python output tab for the non-working (latest)
version:
/usr/bin/python3 -m jupyter notebook --version
/usr/bin/python3 -m jupyter notebook --version
/usr/bin/python3 -m jupyter kernelspec --version
/usr/bin/python3 -m jupyter kernelspec --version
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m ipykernel --version
/usr/bin/python3 -m ipykernel --version
/usr/bin/python3 -m ipykernel install --user --name cebac997-fb10-45de-9dfe-d32f0575e873 --display-name 'Python Interactive'
/usr/bin/python3 -m ipykernel install --user --name cebac997-fb10-45de-9dfe-d32f0575e873 --display-name 'Python Interactive'
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m jupyter kernelspec list
python -c "import sys;print(sys.executable)"
/usr/bin/python3 -m jupyter notebook --no-browser --notebook-dir=/tmp/b3f54c20-7806-4039-983c-a9fa17fb7436 --config=/tmp/b3f54c20-7806-4039-983c-a9fa17fb7436/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
/usr/bin/python3 -m jupyter notebook --no-browser --notebook-dir=/tmp/b3f54c20-7806-4039-983c-a9fa17fb7436 --config=/tmp/b3f54c20-7806-4039-983c-a9fa17fb7436/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
This is the output from the working version:
… /usr/bin/python3 -m jupyter notebook --version
/usr/bin/python3 -m jupyter notebook --version
/usr/bin/python3 -m jupyter kernelspec --version
/usr/bin/python3 -m jupyter kernelspec --version
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m jupyter kernelspec list
/usr/bin/python3 -m jupyter kernelspec list
python -c "import sys;print(sys.executable)"
/usr/bin/python3 -m jupyter notebook --no-browser --notebook-dir=/tmp/28288d4e-5f47-4ac0-93d9-350ae6c2f39d --config=/tmp/28288d4e-5f47-4ac0-93d9-350ae6c2f39d/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0 --ip 127.0.0.1 --allow-root
/usr/bin/python3 -m jupyter notebook --no-browser --notebook-dir=/tmp/28288d4e-5f47-4ac0-93d9-350ae6c2f39d --config=/tmp/28288d4e-5f47-4ac0-93d9-350ae6c2f39d/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0 --ip 127.0.0.1 --allow-root
/usr/bin/python3 ~/.vscode-server/extensions/ms-python.python-2019.10.44104/pythonFiles/datascience/getServerInfo.py
/usr/bin/python3 ~/.vscode-server/extensions/ms-python.python-2019.10.44104/pythonFiles/datascience/getServerInfo.py
/usr/bin/python3 ~/.vscode-server/extensions/ms-python.python-2019.10.44104/pythonFiles/datascience/getServerInfo.py
/usr/bin/python3 ~/.vscode-server/extensions/ms-python.python-2019.10.44104/pythonFiles/datascience/getServerInfo.py
/usr/bin/python3 -m ipykernel --version
/usr/bin/python3 -m ipykernel --version
On Thu, 21 Nov 2019 at 16:10, Rich Chiodo ***@***.***> wrote:
@Rockgecko <https://github.com/Rockgecko> do you have also have the OSError:
[Errno 99] Cannot assign requested address in your console output?
I wonder if the debugger is perhaps taking a port that jupyter is trying
to use.
Additionally can somebody send me the output of the 'Python' output tab
from it working and it not working?
We did make some minor changes around jupyter startup, but we can't repro
your issue on any machine here. I'd like to check if the jupyter startup
args are different between it working and not working.
Thanks.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<https://github.com/microsoft/vscode-python/issues/8661?email_source=notifications&email_token=ACRBEXMALDZ7IZOD5OWYFV3QU2XIFA5CNFSM4JPG36TKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEE2YI7Y#issuecomment-557155455>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACRBEXLNAQ3PK3XF2LL7BMDQU2XIFANCNFSM4JPG36TA>
.
|
Thanks. That helps. The difference is this: We only do this when running in docker containers. So it looks like we're not detecting docker containers anymore. |
Temporarily you should be able to workaround this by starting your own jupyter server and telling VS code to use that one, well like @caiopiccirillo did. You'll likely have to pass it the --ip and --allow-root flags. |
I also get this running in an Ubuntu dev container. It hasn't worked for me since I started working with dev containers in, I think, 1.39. I'm currently on insiders 1.41. I have a separate workaround:
Because I'm on a remote docker host, I also had to forward 8888 from the docker host. Python interactive works as expected with these settings. #2655 is to request port bindings for jupyter; would ip binding also be a useful setting? |
I'm sorry about the delay answering. I was processing some simple images and the vscode crashed, there wasn't any warning inside the vscode, just the "not responding" popup. |
@caiopiccirillo I think the only thing we could try would be for me to try your code here. The console logs would help, but if VS code crashes, there's no way to get them that I know of. |
Validated this now works in a docker container. Should be in our next release. |
I had a VScode auto-update today. |
Bug: Notebook Editor
Steps to cause the bug to occur
I'm working in a dev container using python and jupyter to process some images and when I try to start a Jupyter server from button "Run all cells" it shows this error:
Then I started a server manually, and connected the notebook editor using setting "python.dataScience.jupyterServerURI", but there's a performance issue processing the images.
When I was using the version 2019.10.44104, it was all working.
Jupyter and/or Python environment
Developer Tools Console Output
bootstrap-window.js:213 [uncaught exception]: Error: Cannot read property 'reprocess' of undefined
TypeError: Cannot read property 'reprocess' of undefined
at C.onDefaultConfigurationChanged (file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:4605:138)
at file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:4597:277
at c.fire (file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:115:286)
at Object.registerConfigurations (file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:1612:442)
at Object.registerConfiguration (file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:1612:115)
at file:///snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2822:512
onUnexpectedError @ bootstrap-window.js:213
bootstrap-window.js:216 Error: Cannot read property 'reprocess' of undefined
TypeError: Cannot read property 'reprocess' of undefined
at C.onDefaultConfigurationChanged (configurationService.ts:498)
at configurationService.ts:97
at c.fire (event.ts:580)
at Object.registerConfigurations (configurationRegistry.ts:195)
at Object.registerConfiguration (configurationRegistry.ts:182)
at externalTerminalService.ts:369
at errors.ts:26
onUnexpectedError @ bootstrap-window.js:216
console.ts:137 [Extension Host] OutputTerminal#waitForOpen() took 109ms
console.ts:137 [Extension Host] Extension 'ms-python.python' uses a document selector without scheme. Learn more about this: https://go.microsoft.com/fwlink/?linkid=872305
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 2ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 4ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 1ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 5ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Create file systemwatcher with pattern */python
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Create file systemwatcher with pattern //python
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 17ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 9ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 8ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Register Interpreter Watcher, Class name = p, completed in 6ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Build the workspace interpreter watcher, Class name = h, completed in 9ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Gathering tools have been activated
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Loading web panel. Panel is notset
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Loading web view...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Web view created.
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Adding sys info for 31c33484-5e0e-4533-a611-031abe9c853c 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Sys info for 31c33484-5e0e-4533-a611-031abe9c853c 0 complete
console.ts:137 [Extension Host] Error Python Extension: 2019-11-19 17:31:12: [TypeError: Cannot convert object to primitive value at Array.join () at Array.toString () at /root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:1:12746 at Array.forEach () at Object.l [as sendTelemetryEvent] (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:1:12668) at S.sendSettingsTelemetry (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:631341) at Timeout._onTimeout (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:1:83147) at listOnTimeout (internal/timers.js:531:17) at processTimers (internal/timers.js:475:7)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: autoSelectInterpreter, Class name = f, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Arg 2: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: autoSelectInterpreter, Class name = f, completed in 6ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Checking support of .NET, Class name = c, completed in 3ms, , Return Value: true
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: autoSelectInterpreter, Class name = f, completed in 7ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detection of Python Interpreter for Command python3.6 and args failed
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Detection of Python Interpreter for Command python2 and args failed
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: > /usr/local/bin/python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:12: Selected Interpreter from currentPath, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Current value for rule system is {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Current value for rule currentPath is {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Current value for rule windowsRegistry is nothing
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
5console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Error Python Extension: 2019-11-19 17:31:13: Failed to check if file needs to be fixed [Error: ENOENT: no such file or directory, open '/root/.config/Code/User/settings.json'] { errno: -2, code: 'ENOENT', syscall: 'open', path: '/root/.config/Code/User/settings.json'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get Interpreters, Class name = m, completed in 1202ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get language server folder name, Class name = f, completed in 1039ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: "languageServer.0.4.114"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get language server folder name, Class name = f, completed in 119ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: "languageServer.0.4.114"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Cached data exists getEnvironmentVariables, /workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Cached data exists getEnvironmentVariables, /workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Activation Commands received undefined for shell bash
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: getActivatedEnvironmentVariables, Class name = b, completed in 3ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Cached data exists getEnvironmentVariables, /workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Get language server folder name, Class name = f, completed in 2ms, Arg 1: Uri:/workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb, Return Value: "languageServer.0.4.114"
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:13: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: setGlobalInterpreter, Class name = f, completed in 1279ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: autoSelectInterpreter, Class name = f, completed in 1616ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: setGlobalInterpreter, Class name = f, completed in 1310ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: autoSelectInterpreter, Class name = f, completed in 1772ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Starting Language Server, Class name = d, completed in 618ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Cached data exists getEnvironmentVariables, /workspaces/avc-by-image/Projeto_Caio_Piccirillo.ipynb
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Checking support of .NET, Class name = c, completed in 1ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: autoSelectInterpreter, Class name = f, completed in 0ms, Arg 1: undefined, Arg 2: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Executing next rule from workspaceEnvs
3console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: autoSelectInterpreter, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: [object Object]. Shell identified as undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Shell path from user settings 'null'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: [object Object]. Shell identified as other
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Shell path '/bin/bash'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Shell path identified as shell 'bash'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Shell path from user env '/bin/bash'
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: [object Object]. Shell identified as bash
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Shell identified as 'bash'
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Cached data exists KeyPrefix=Cache_Method_Output_b.getCondaInfo-Args=
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters, Class name = m, completed in 22ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Selected Interpreter from currentPath, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Create file systemwatcher with pattern */python
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Create file systemwatcher with pattern //python
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Register Interpreter Watcher, Class name = p, completed in 3ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Build the workspace interpreter watcher, Class name = h, completed in 4ms, Arg 1: undefined, Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Get Interpreters, Class name = m, completed in 7ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Current value for rule system is {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Current value for rule currentPath is {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Current value for rule windowsRegistry is nothing
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:14: Selected Interpreter from system, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.5 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Get Interpreters, Class name = m, completed in 1857ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Selected Interpreter from system, {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.5 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by CondaEnvService are []
3console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by KnownPathsService are of count 9
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by WorkspaceVirtualEnvService are []
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by CurrentPathService are of count 4
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"/usr/local/bin/python3.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"6eb877de4a92b6424a040f88a04218b151068ea29a262e45e92fbcfbce096372fd4f18a6fdc3ad0c822ff8eb5dcaf82e1e11e4af19751d526869beb4d99d0c87","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"450173c543c69f63cd0ad4797c25c72547a7e526d00b651069df870c3ff2b0583a6358eb388f16063ba543853c2674cab3867d4c4de60506758b75c5f19fef68","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown"},{"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Request for onigasm file at /root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/node_modules/onigasm/lib/onigasm.wasm
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:15: Wait for sys info for 31c33484-5e0e-4533-a611-031abe9c853c 0
console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:16: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Searching for token colors ...
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Attempting search for colors ...
2console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:16: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Attempting search for colors ...
console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:16: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: setGlobalInterpreter, Class name = f, completed in 1663ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: autoSelectInterpreter, Class name = f, completed in 1695ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: setGlobalInterpreter, Class name = f, completed in 1667ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: autoSelectInterpreter, Class name = f, completed in 1842ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: setGlobalInterpreter, Class name = f, completed in 2115ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.5 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:16: autoSelectInterpreter, Class name = f, completed in 2467ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: setGlobalInterpreter, Class name = f, completed in 1975ms, Arg 1: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.5 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: autoSelectInterpreter, Class name = f, completed in 4403ms, Arg 1: Uri:/workspaces/avc-by-image, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:17: Cached data exists getEnvironmentVariables, /workspaces/avc-by-image
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:18: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:18: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
2console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:18: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:18: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Attempting search for colors ...
3console.ts:137 [Extension Host] Warn Python Extension: 2019-11-19 17:31:18: Color theme Default Dark+ not found. Using default colors.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Request for tmlanguage file.
2console.ts:137 [Extension Host] Info Python Extension: 2019-11-19 17:31:18: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:3241 [Embedded Page] Could not create web worker(s). Falling back to loading web worker code in main thread, which might cause UI freezes. Please see https://github.com/Microsoft/monaco-editor#faq
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:3241 [Embedded Page] Failed to construct 'Worker': Script at 'vscode-resource://file///root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/datascience-ui/native-editor/editor.worker.js' cannot be accessed from origin 'null'.
3/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Waiting for jupyter server and web panel ...
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Cached data exists getEnvironmentVariables,
11/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Waiting for jupyter server and web panel ...
3/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Activation Commands received undefined for shell bash
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: getActivatedEnvironmentVariables, Class name = b, completed in 3ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}, Arg 3: true
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: Cached data exists getEnvironmentVariables,
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:20: > /usr/local/bin/python -m jupyter notebook --version
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists ActivatedEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: getActivatedEnvironmentVariables, Class name = b, completed in 2ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}, Arg 3: true
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Getting jupyter server options ...
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Connecting to jupyter server ...
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Connecting to history server
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Launching history server
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Searching for best interpreter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Best interpreter is /usr/local/bin/python
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists ActivatedEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}, Arg 3: true
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: > /usr/local/bin/python -m jupyter kernelspec --version
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Generating custom default config at /tmp/5b422c08-f194-4b42-ac25-754d910db05c/jupyter_notebook_config.py
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists ActivatedEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/local/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.5-final","major":3,"minor":7,"patch":5,"prerelease":["final"],"build":[],"version":"3.7.5-final"},"sysPrefix":"/usr/local","fileHash":"dfd71f4e54b368082b0890baed6252a9a5d00c660eabbe4040c7910fab51b7365dc03411c10de3fa5d320834329c33ae55bd03d6cc8211ae5f42c81d56e15216","type":"Unknown","displayName":"Python 3.7.5 64-bit"}, Arg 3: true
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: Asking for kernelspecs from jupyter
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:21: > /usr/local/bin/python -m jupyter kernelspec list
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Parsing kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Awaiting the read of kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Returning kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Searching for a kernelspec match
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Asking for kernelspecs from jupyter
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: > /usr/local/bin/python -m jupyter kernelspec list
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Parsing kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Awaiting the read of kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Returning kernelspecs from jupyter
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Cached data exists getEnvironmentVariables,
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: > python -c "import sys;print(sys.executable)"
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: Found kernelspec match ce8903d0-6b1b-4565-8af3-52ca9968589f' '/usr/local/bin/python
2/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:22: > /usr/local/bin/python -m jupyter notebook --no-browser --notebook-dir=/tmp/5b422c08-f194-4b42-ac25-754d910db05c --config=/tmp/5b422c08-f194-4b42-ac25-754d910db05c/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: Traceback (most recent call last): File "/usr/local/bin/jupyter-notebook", line 8, in
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: sys.exit(main()) File "/usr/local/lib/python3.7/site-packages/jupyter_core/application.py", line 268, in launch_instance return super(JupyterApp, cls).launch_instance(argv=argv, **kwargs) File "/usr/local/lib/python3.7/site-packages/traitlets/config/application.py", line 663, in launch_instance app.initialize(argv) File "</usr/local/lib/python3.7/site-packages/decorator.py:decorator-gen-7>", line 2, in initialize File "/usr/local/lib/python3.7/site-packages/traitlets/config/application.py", line 87, in catch_config_error return method(app, *args, **kwargs) File "/usr/local/lib/python3.7/site-packages/notebook/notebookapp.py", line 1720, in initialize
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: self.init_webapp() File "/usr/local/lib/python3.7/site-packages/notebook/notebookapp.py", line 1482, in init_webapp
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: self.http_server.listen(port, self.ip)
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: File "/usr/local/lib/python3.7/site-packages/tornado/tcpserver.py", line 151, in listen sockets = bind_sockets(port, address=address) File "/usr/local/lib/python3.7/site-packages/tornado/netutil.py", line 174, in bind_sockets sock.bind(sockaddr)
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Info Python Extension: 2019-11-19 17:31:23: OSError: [Errno 99] Cannot assign requested address
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596 Jupyter server crashed. Unable to connect. Error code from jupyter: 1
onDidNotificationChange @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:2596
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250 [Extension Host] Error Python Extension: 2019-11-19 17:31:23: [Error: Jupyter server crashed. Unable to connect.
Error code from jupyter: 1 at t.NotebookStarter.start (/root/.vscode-server/extensions/ms-python.python-2019.11.49689/out/client/extension.js:75:876261) at processTicksAndRejections (internal/process/task_queues.js:89:5)]
t.log @ /snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:250
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:3695 Extension Host
/snap/code/20/usr/share/code/resources/app/out/vs/workbench/workbench.desktop.main.js:3695 Debugger attached.
console.ts:137 [Extension Host] (node:137) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:580
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:580
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
The text was updated successfully, but these errors were encountered: