Skip to content
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

Requires Python 2.7 ipykernel to be installed when opening Python 3 notebook #4941

Closed
ma137 opened this issue Feb 24, 2021 · 56 comments
Closed
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug

Comments

@ma137
Copy link

ma137 commented Feb 24, 2021

Environment data

  • VS Code version: 1.53.2 (commit: 622cb03f7e070a9670c94bae1a45d78d7181fbd4)
  • Jupyter Extension version (available under the Extensions sidebar): v2021.2.576440691
  • Python Extension version (available under the Extensions sidebar): v2021.2.582707922
  • OS and version: Ubuntu 20.04 (Linux x64 5.4.0-66-generic)
  • Python and/or Anaconda version: Python 3.8.5 and Python 2.7.18
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Jupyter server running: Local

Detailed VS Code version information:

Version: 1.53.2
Commit: 622cb03f7e070a9670c94bae1a45d78d7181fbd4
Date: 2021-02-11T11:48:44.518Z
Electron: 11.2.1
Chrome: 87.0.4280.141
Node.js: 12.18.3
V8: 8.7.220.31-electron.0
OS: Linux x64 5.4.0-66-generic

Expected behaviour

Start automatically the IPython kernel for the trusted Python 3 notebook while opening the notebook. Run cells after clicking on the "Run cell" button.

(Before updating VS Code everything worked as expected.)

Actual behaviour

Error message "Python 2.7.18 64-bit requires ipykernel to be installed." appears at startup and each time one tries to run a cell. Actually, the cells do not get executed until one closes the error message by clicking on the "x".

Steps to reproduce:

  1. Start the Jupyter server by running jupyter notebook in a terminal. Open its web interface in a browser.
  2. Create a new Python 3 notebook. Add a cell or more, e.g. a cell with 1+1.
  3. Close the notebook in the web interface.
  4. Start VS Code and open the notebook. Try to run the cell with the "Run cell" button.

Here is a part of the source of one of my notebooks. As far as I know, these metadata show clearly that it is
a Python 3 notebook.

 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8.5-final"
  },
  "toc-autonumbering": true
 },
 "nbformat": 4,
 "nbformat_minor": 4
}

Logs

Output for Jupyter in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Jupyter)

> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel" > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel" Error 2021-02-24 20:00:40: Find kernel spec, Class name = L, completed in 40748ms, has a falsy return value, Arg 1: , Arg 2: {"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.5"}}, Arg 3: undefined, Arg 4: undefined, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } Error 2021-02-24 20:00:40: Get preferred local kernel connection, Class name = L, completed in 40749ms, has a falsy return value [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } Error 2021-02-24 20:00:40: Failed to determine if a notebook is active for the current editor [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } Error 2021-02-24 20:00:40: Failed to determine if a notebook is active for the current editor [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } Error 2021-02-24 20:00:40: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } } Error 2021-02-24 20:01:20: Exception attempting to start notebook: [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 } Error 2021-02-24 20:01:20: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python at L.installDependenciesIntoInterpreter (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:223195) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async L.getKernelForLocalRawConnection (/home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/extension.js:1:222022)] { category: 'noipykernel', reason: 1 }

Possible origin of the problem

This output indicates that the problem might be that the extension executes /usr/bin/python also for Python 3 notebooks, while /usr/bin/python is actually Python 2 on Ubuntu 20.04. In the Ubuntu 20.04 release notes the following information can be found:

/usr/bin/python is not present by default on any new installs. On systems upgraded from previous releases, /usr/bin/python will continue to point to python2 for compatibility.

Screenshot

VS_Code_Jupyter_extension_error

@ma137 ma137 added the bug Issue identified by VS Code Team member as probable bug label Feb 24, 2021
@rchiodo
Copy link
Contributor

rchiodo commented Feb 24, 2021

Thanks for the bug. What you said here is likely the root cause:

This output indicates that the problem might be that the extension executes /usr/bin/python also for Python 3 notebooks, while /usr/bin/python is actually Python 2 on Ubuntu 20.04. In the Ubuntu 20.04 release notes the following information can be found:

If you run jupyter kernelspec list --json what does your Python 3 kernelspec actually contain?

@ma137
Copy link
Author

ma137 commented Feb 24, 2021

Thanks for the fast reply!

Here is the Python 3 kernelspec part of the output from jupyter kernelspec list --json:

  "kernelspecs": {
    "python3": {
      "resource_dir": "/usr/share/jupyter/kernels/python3", 
      "spec": {
        "interrupt_mode": "signal", 
        "display_name": "Python 3", 
        "env": {}, 
        "language": "python", 
        "argv": [
          "/usr/bin/python3", 
          "-m", 
          "ipykernel_launcher", 
          "-f", 
          "{connection_file}"
        ], 
        "metadata": {}
      }
    }, 

@ma137
Copy link
Author

ma137 commented Feb 24, 2021

Here is another information that might be useful: Now, I installed version v2020.12.414227025 of vscode-jupyter. In this version everythings works as expected. So, I can definitively say that the bug was not yet present in version v2020.12.414227025.

@DonJayamanne
Copy link
Contributor

@ma137
Please could you enable logging as follows:

  • Open settings & go into Jupyter->Logging
  • Change the value to debug
  • Reload VS Code,
  • Attempt to repro the issue & then copy the output from the Jupyter output panel.

The output would help us figure out what is going wrong. Thanks

@ma137
Copy link
Author

ma137 commented Feb 24, 2021

I switched back to the current version of vscode-jupyter, i.e., v2021.2.576440691, and followed your instructions. You can find the log output below.

complete Jupyter log output from opening a Python 3 notebook (logging level is debug )

Info 2021-02-25 00:03:01: Checking if notebook is trusted
Info 2021-02-25 00:03:01: Trusted, Class name = p, completed in 2ms, has a truthy return value, Return Value: true
Info 2021-02-25 00:03:01: Loading web panel for file:///home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Loading webview. View is notset
Info 2021-02-25 00:03:01: Attempting to start a server because of preload conditions ...
Info 2021-02-25 00:03:01: Loading web view...
Info 2021-02-25 00:03:01: Webview panel created.
Info 2021-02-25 00:03:01: Creating raw notebook for file:///home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Getting preferred kernel for file:///home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Searching for kernel based on {"display_name":"Python 3","language":"python","name":"python3"} for /home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Find kernel spec, Class name = D, completed in 5ms, has a truthy return value, Arg 1: , Arg 2: {"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.5"}}, Arg 3: undefined, Return Value: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}
Info 2021-02-25 00:03:01: Found matching interpreter based on interpreter or interpreterPath in metadata, for the kernel python3, Python 3, /usr/bin/python
Info 2021-02-25 00:03:01: Find matching interpreter for a given kernel spec, Class name = P, completed in 5ms, has a truthy return value, Arg 1: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}, Arg 2: undefined, Return Value: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.18-final","major":2,"minor":7,"patch":18,"prerelease":["final"],"build":[],"version":"2.7.18-final"},"sysVersion":"2.7.18 (default, Aug  4 2020, 11:16:42) \n[GCC 9.3.0]","sysPrefix":"/usr","fileHash":"56aa51cc7fb993a39110af62db9139888f06d1ef12380781ebcf13bfabf19e5b7d456d5bd96dd0796ceba8ff6beba8817eedc5371e4ba34128e15e9ac2c523bf","envType":"Unknown","displayName":"Python 2.7.18 64-bit"}
Info 2021-02-25 00:03:01: Found matching interpreter based on interpreter or interpreterPath in metadata, for the kernel python3, Python 3, /usr/bin/python
Info 2021-02-25 00:03:01: Find matching interpreter for a given kernel spec, Class name = P, completed in 6ms, has a truthy return value, Arg 1: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}, Arg 2: undefined, Return Value: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.18-final","major":2,"minor":7,"patch":18,"prerelease":["final"],"build":[],"version":"2.7.18-final"},"sysVersion":"2.7.18 (default, Aug  4 2020, 11:16:42) \n[GCC 9.3.0]","sysPrefix":"/usr","fileHash":"56aa51cc7fb993a39110af62db9139888f06d1ef12380781ebcf13bfabf19e5b7d456d5bd96dd0796ceba8ff6beba8817eedc5371e4ba34128e15e9ac2c523bf","envType":"Unknown","displayName":"Python 2.7.18 64-bit"}
Info 2021-02-25 00:03:01: installMissingDependencies /usr/bin/python
Info 2021-02-25 00:03:01: Cached data exists getEnvironmentVariables, 
Info 2021-02-25 00:03:01: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-02-25 00:03:01: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-02-25 00:03:02: Cached data exists getEnvironmentVariables, 
Info 2021-02-25 00:03:03: Web view react rendered
Info 2021-02-25 00:03:03: Request for onigasm file at /home/ma/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-02-25 00:03:03: Request for tmlanguage file.
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Searching for token colors ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Loading colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Attempting search for colors ...
Info 2021-02-25 00:03:03: Loading base colors from /home/ma/.vscode/extensions/zhuangtongfa.material-theme-3.9.15/themes/OneDark-Pro.json ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...
Info 2021-02-25 00:03:03: Using colors to generate CSS ...

an interesting part of the log (excerpt from the full log above)

Info 2021-02-25 00:03:01: Webview panel created.
Info 2021-02-25 00:03:01: Creating raw notebook for file:///home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Getting preferred kernel for file:///home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Searching for kernel based on {"display_name":"Python 3","language":"python","name":"python3"} for /home/ma/[...]/Untitled.ipynb
Info 2021-02-25 00:03:01: Find kernel spec, Class name = D, completed in 5ms, has a truthy return value, Arg 1: , Arg 2: {"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.5"}}, Arg 3: undefined, Return Value: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}
Info 2021-02-25 00:03:01: Found matching interpreter based on interpreter or interpreterPath in metadata, for the kernel python3, Python 3, /usr/bin/python
Info 2021-02-25 00:03:01: Find matching interpreter for a given kernel spec, Class name = P, completed in 5ms, has a truthy return value, Arg 1: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}, Arg 2: undefined, Return Value: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.18-final","major":2,"minor":7,"patch":18,"prerelease":["final"],"build":[],"version":"2.7.18-final"},"sysVersion":"2.7.18 (default, Aug  4 2020, 11:16:42) \n[GCC 9.3.0]","sysPrefix":"/usr","fileHash":"56aa51cc7fb993a39110af62db9139888f06d1ef12380781ebcf13bfabf19e5b7d456d5bd96dd0796ceba8ff6beba8817eedc5371e4ba34128e15e9ac2c523bf","envType":"Unknown","displayName":"Python 2.7.18 64-bit"}
Info 2021-02-25 00:03:01: Found matching interpreter based on interpreter or interpreterPath in metadata, for the kernel python3, Python 3, /usr/bin/python
Info 2021-02-25 00:03:01: Find matching interpreter for a given kernel spec, Class name = P, completed in 6ms, has a truthy return value, Arg 1: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python3","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3"}, Arg 2: undefined, Return Value: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.18-final","major":2,"minor":7,"patch":18,"prerelease":["final"],"build":[],"version":"2.7.18-final"},"sysVersion":"2.7.18 (default, Aug  4 2020, 11:16:42) \n[GCC 9.3.0]","sysPrefix":"/usr","fileHash":"56aa51cc7fb993a39110af62db9139888f06d1ef12380781ebcf13bfabf19e5b7d456d5bd96dd0796ceba8ff6beba8817eedc5371e4ba34128e15e9ac2c523bf","envType":"Unknown","displayName":"Python 2.7.18 64-bit"}
Info 2021-02-25 00:03:01: installMissingDependencies /usr/bin/python
Info 2021-02-25 00:03:01: Cached data exists getEnvironmentVariables, 
Info 2021-02-25 00:03:01: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.2.576440691/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

@IanMatthewHuff
Copy link
Member

@ma137 We just released a version of our insiders extension that I believe has the fix for your situation. If you download vscode-insiders (which works side by side with stable vscode, so it's easy to install and won't mess up your stable version) and install the jupyter extension can you try out this scenario again?

Also, in case it doesn't work could you please turn on the logging in vscode-insiders setting as above (insiders and stable use different settings stores) and attach the full log? We changed a lot of our kernel detection and launch code in this version, as well as updating the logging to give us more info on how the kernels are matching.

@DonJayamanne
Copy link
Contributor

No longer an issue. Please feel free to create a new issue or re-open this issue if it persists.

@ma137
Copy link
Author

ma137 commented Mar 24, 2021

@IanMatthewHuff I followed your instructions and installed VS Code Insiders. I installed the Python and the Jupyter extension therein. However, I keep getting the same error. (I hope I did it right. :-) ) You can find the version numbers and the logs (log level is set to debug) below.

Version numbers

  • VS Code version: Version: 1.55.0-insider (commit: 8437d38d364ba93b53c1e659c20b1c86f710ec28 )
  • Jupyter Extension version (available under the Extensions sidebar): v2021.4.678042391
  • Python Extension version (available under the Extensions sidebar): v2021.3.680753044
  • OS and version: Ubuntu 20.04 (Linux x64 5.4.0-70-generic)
  • Python and/or Anaconda version: Python 3.8.5 and Python 2.7.18
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Jupyter server running: Local

Logs

complete Jupyter log output from opening a Python 3 notebook (logging level is debug)
User belongs to experiment group 'pythonJediLSP'
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'pythonDiscoveryModule'
User belongs to experiment group 'pythonFindInterpreter'
User belongs to experiment group 'NativeNotebookEditor'
Info 2021-03-24 23:09:15: ZMQ install verified.
Info 2021-03-24 23:09:15: Found existing keyfile at /home/ma/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-03-24 23:09:15: Checking if notebook is trusted
Info 2021-03-24 23:09:15: Check if Notebook is Trusted, Class name = p, completed in 3ms, has a truthy return value, Return Value: true
Info 2021-03-24 23:09:15: Attempting to start a server because of preload conditions ...
Info 2021-03-24 23:09:16: Search all interpreters /usr/bin/python, /usr/bin/python3
Info 2021-03-24 23:09:16: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python
Info 2021-03-24 23:09:16: Loading kernelspec from /home/ma/.local/share/jupyter/kernels/python2/kernel.json for undefined
Info 2021-03-24 23:09:16: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:16: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:16: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:16: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:16: findPreferredKernel score for Python 2.7.18 64-bit is 3
Info 2021-03-24 23:09:16: findPreferredKernel score for Python 2 is 3
Info 2021-03-24 23:09:16: Find kernel spec, Class name = D, completed in 1ms, has a truthy return value, Arg 1: , Arg 2: {"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.5"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.18 64-bit"},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"},"id":".python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit"}
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-03-24 23:09:16: KernelProvider switched kernel to id = .python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit}
Info 2021-03-24 23:09:16: Starting Notebook in kernel.ts id = .python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit
Info 2021-03-24 23:09:16: Creating raw notebook for file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:16: Getting preferred kernel for file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:16: Computing working directory file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:16: Connecting to raw session for file:///home/ma/vscode_test/vscode_test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.18 64-bit"},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"},"id":".python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit"}
Info 2021-03-24 23:09:16: Starting raw kernel Python 2.7.18 64-bit
Info 2021-03-24 23:09:16: installMissingDependencies /usr/bin/python
Info 2021-03-24 23:09:16: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-03-24 23:09:16: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Error 2021-03-24 23:09:16: Install Missing Dependencies, Class name = v, completed in 345ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:16: Raw session failed to start because dependencies not installed
Info 2021-03-24 23:09:16: Shutdown session -- complete
Error 2021-03-24 23:09:16: failed to create INotebook in kernel, UI Disabled = true [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:16: failed to start INotebook in kernel, UI Disabled = true [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-03-24 23:09:28: Execute Cell 0 file:///home/ma/vscode_test/vscode_test.ipynb in kernelWithMetadata.ts
Info 2021-03-24 23:09:28: Starting Notebook in kernel.ts id = .python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit
Info 2021-03-24 23:09:28: Cell Index:0, state:undefined, exec: 1. User queued cell for execution
Info 2021-03-24 23:09:28: Cell Index:0, state:undefined, exec: 1. Update cell state as it was enqueued
Info 2021-03-24 23:09:28: Creating raw notebook for file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:28: Getting preferred kernel for file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:28: Computing working directory file:///home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-24 23:09:28: Connecting to raw session for file:///home/ma/vscode_test/vscode_test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.18 64-bit"},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"},"id":".python2718jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python3./usr/bin/python.Python 2.7.18 64-bit"}
Info 2021-03-24 23:09:28: Starting raw kernel Python 2.7.18 64-bit
Info 2021-03-24 23:09:28: installMissingDependencies /usr/bin/python
Info 2021-03-24 23:09:28: Cached data exists getEnvironmentVariables, 
Info 2021-03-24 23:09:28: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-03-24 23:09:28: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-03-24 23:09:29: Trusting notebook...
Info 2021-03-24 23:09:29: Wrote trust for file:///home/ma/vscode_test/vscode_test.ipynb to /home/ma/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsignatures/66c3e7a4fccbd120adcd6c45581d0ecec16d04aeebacc7422c5be4f4fe05c443
Error 2021-03-24 23:09:53: Install Missing Dependencies, Class name = v, completed in 24845ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)
	at processTicksAndRejections (internal/process/task_queues.js:97:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:53: Raw session failed to start because dependencies not installed
Info 2021-03-24 23:09:53: Shutdown session -- complete
Error 2021-03-24 23:09:53: failed to create INotebook in kernel, UI Disabled = false [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)
	at processTicksAndRejections (internal/process/task_queues.js:97:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:53: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)
	at processTicksAndRejections (internal/process/task_queues.js:97:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:53: failed to start INotebook in kernel, UI Disabled = false [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)
	at processTicksAndRejections (internal/process/task_queues.js:97:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-03-24 23:09:53: Failed to execute cells in CellExecutionQueue [a [Error]: IPyKernel not installed into interpreter Python 2.7.18 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/ma/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.4.678042391/out/client/extension.js:49:560207)
	at processTicksAndRejections (internal/process/task_queues.js:97:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-03-24 23:09:53: Cancel pending cells
Info 2021-03-24 23:09:53: Cell Index:0, state:2, exec: undefined. Execution cancelled
Info 2021-03-24 23:09:53: Cell Index:0, state:2, exec: undefined. Completed due to cancellation
Info 2021-03-24 23:09:53: Cell Index:0, state:2, exec: undefined. Update cell status as idle and message as empty
Info 2021-03-24 23:09:53: Cell Index:0, state:2, exec: undefined. Cell cancelled & resolving
Info 2021-03-24 23:09:53: Cell Index:0, state:2, exec: undefined. Execution disposed
Info 2021-03-24 23:09:54: Trusting notebook...

To the following three lines, which are contained the full log above, seem to be especially interesting:

Info 2021-03-24 23:09:16: Search all interpreters /usr/bin/python, /usr/bin/python3
Info 2021-03-24 23:09:16: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python
Info 2021-03-24 23:09:16: Loading kernelspec from /home/ma/.local/share/jupyter/kernels/python2/kernel.json for undefined

@IanMatthewHuff
Copy link
Member

Actually this bit here might be the interesting bit:

Info 2021-03-24 23:09:16: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python
Info 2021-03-24 23:09:16: Loading kernelspec from /home/ma/.local/share/jupyter/kernels/python2/kernel.json for undefined
...
Info 2021-03-24 23:09:16: findPreferredKernel score for Python 2.7.18 64-bit is 3
Info 2021-03-24 23:09:16: findPreferredKernel score for Python 2 is 3

At this point we look at the info in the metadata of the notebook file to see the best kernel match on the system. And we look for any python interpreters or kernelspecs available on the system to launch with.

That python3 kernelspec that you have installed seems to be getting mapped to that /usr/bin/python python2. Given that the kernelspec has

Sorry to be asking so much of you, but I can't seem to generate this same scenario myself locally. This time could you set the setting Python->Logging->Level to debug and rerun the scenario? And this time pull the log from the Python output instead of the Jupyter output? The error here seems to be that when looking at the /usr/bin/python interpreter (we rely on the Python extension for getting interpreter info) we are associating it with that python3 kernelspec. With that python info I should be able to see the interpreter info for all the interpreters getting passed via the python extension.

@DonJayamanne
Copy link
Contributor

Sorry for closing this too eagerly.

@ma137
Copy link
Author

ma137 commented Mar 26, 2021

No problem, many thanks for investigating this!

I changed the log level of the Python extension in VS Code Insiders and opened the Jupyter notebook. Here are the logs of the Python extension:

Logs
User belongs to experiment group 'pythonaa'
User belongs to experiment group 'pythonSendEntireLineToREPL'
User belongs to experiment group 'pythonNotDisplayLinterPrompt'
User belongs to experiment group 'pythonDiscoveryModule'
User belongs to experiment group 'PythonPyTorchProfiler'
User belongs to experiment group 'ShowExtensionSurveyPrompt - control'
User belongs to experiment group 'CollectLSRequestTiming - control'
User belongs to experiment group 'DeprecatePythonPath - experiment'
Info 2021-03-26 22:30:35: Display locator refreshing progress, Class name = g, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Searching for conda.
Info 2021-03-26 22:30:35: Probing conda binary: conda
Info 2021-03-26 22:30:35: Searching for workspace virtual envs in: /home/ma/vscode_test
Info 2021-03-26 22:30:35: Searching for workspace virtual envs in: /home/ma/vscode_test/.direnv
Info 2021-03-26 22:30:35: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:35: [Error: spawn conda ENOENT
	at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)
	at onErrorNT (internal/child_process.js:469:16)
	at processTicksAndRejections (internal/process/task_queues.js:84:21)] {
  errno: 'ENOENT',
  code: 'ENOENT',
  syscall: 'spawn conda',
  path: 'conda',
  spawnargs: [ 'info', '--json' ]
}
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/Envs
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/.direnv
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/.venvs
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/.virtualenvs
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/.local/share/virtualenvs
Info 2021-03-26 22:30:35: Searching for global virtual envs in: /home/ma/envs
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test with pattern python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test with pattern */python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test with pattern */bin/python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test/.direnv with pattern python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test/.direnv with pattern */python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/vscode_test/.direnv with pattern */bin/python using VSCode API
Info 2021-03-26 22:30:35: Start watching: /home/ma/Envs with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/Envs with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/Envs with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.direnv with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.direnv with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.direnv with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.venvs with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.venvs with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.venvs with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.virtualenvs with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.virtualenvs with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.virtualenvs with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.local/share/virtualenvs with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.local/share/virtualenvs with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/.local/share/virtualenvs with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/envs with pattern python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/envs with pattern */python using chokidar
Info 2021-03-26 22:30:35: Start watching: /home/ma/envs with pattern */bin/python using chokidar
Info 2021-03-26 22:30:35: Rule = settings, result = runNextRule
Info 2021-03-26 22:30:35: Executing next rule from settings
Info 2021-03-26 22:30:35: Rule = settings, result = runNextRule
Info 2021-03-26 22:30:35: Executing next rule from settings
Info 2021-03-26 22:30:35: Couldn't locate the conda binary.
Info 2021-03-26 22:30:35: > python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-03-26 22:30:35: > python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-03-26 22:30:35: > python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-03-26 22:30:35: > python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-03-26 22:30:35: Found: /usr/bin/python --> /usr/bin/python2.7
Info 2021-03-26 22:30:35: Found: /usr/bin/python2 --> /usr/bin/python2.7
Info 2021-03-26 22:30:35: Found: /usr/bin/python2.7 --> /usr/bin/python2.7
Info 2021-03-26 22:30:35: Found: /usr/bin/python3 --> /usr/bin/python3.8
Info 2021-03-26 22:30:35: Found: /usr/bin/python3.6 --> /usr/bin/python3.6
Info 2021-03-26 22:30:35: Found: /usr/bin/python3.8 --> /usr/bin/python3.8
Error 2021-03-26 22:30:35: Failed to parse version from path: /usr/bin/python [Error: invalid version python
	at u (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:198256)
	at Object.c [as parseVersion] (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:197565)
	at p.buildPathEnvInfo (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29369)
	at e (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29057)
	at Array.map ()
	at /home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29222
	at async o (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:1:53891)]
Info 2021-03-26 22:30:36: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:36: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:36: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:36: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:36: getActivatedEnvironmentVariables, Class name = P, completed in 79ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:30:36: getActivatedEnvironmentVariables, Class name = P, completed in 79ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:30:36: getActivatedEnvironmentVariables, Class name = P, completed in 80ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:30:36: getActivatedEnvironmentVariables, Class name = P, completed in 79ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar  8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:30:36: [Error: Command failed: "/usr/bin/python3.6" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py"
Traceback (most recent call last):
  File "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py", line 30, in 
    runpy.run_path(module, run_name="__main__")
  File "/usr/lib/python3.6/runpy.py", line 263, in run_path
    pkg_name=pkg_name, script_name=fname)
  File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
    mod_name, mod_spec, pkg_name, script_name)
  File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py", line 4, in 
    import json
ModuleNotFoundError: No module named 'json'
at ChildProcess.exithandler (child_process.js:312:12)
at ChildProcess.emit (events.js:315:20)
at maybeClose (internal/child_process.js:1021:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)] {

killed: false,
code: 1,
signal: null,
cmd: '"/usr/bin/python3.6" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py"'
}
Info 2021-03-26 22:30:36: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-03-26 22:30:36: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-03-26 22:30:36: Rule = workspaceEnvs, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from workspaceEnvs
Info 2021-03-26 22:30:36: Rule = workspaceEnvs, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from workspaceEnvs
Info 2021-03-26 22:30:36: Current value for rule system is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Current value for rule currentPath is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule windowsRegistry is nothing
Info 2021-03-26 22:30:36: Selected Interpreter from cachedInterpreters, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule system is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Current value for rule currentPath is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule windowsRegistry is nothing
Info 2021-03-26 22:30:36: Selected Interpreter from cachedInterpreters, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 70ms, has a truthy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: , Return Value: true
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 70ms, has a truthy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: , Return Value: true
Info 2021-03-26 22:30:36: Rule = cachedInterpreters, result = exit
Info 2021-03-26 22:30:36: Rule = cachedInterpreters, result = exit
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 105ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 104ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 556ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 556ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 558ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 567ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Arg 2: , Return Value: undefined
Info 2021-03-26 22:30:36: Rule = windowsRegistry, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from windowsRegistry
Info 2021-03-26 22:30:36: Rule = settings, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from settings
Info 2021-03-26 22:30:36: Rule = windowsRegistry, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from windowsRegistry
Info 2021-03-26 22:30:36: Rule = settings, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from settings
Info 2021-03-26 22:30:36: getActivatedEnvironmentVariables, Class name = P, completed in 118ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar 8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables, /home/ma/vscode_test
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 20ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 20ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 16ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 16ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables, /home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables, /home/ma/vscode_test/vscode_test.ipynb
Info 2021-03-26 22:30:36: Searching for conda.
Info 2021-03-26 22:30:36: Couldn't locate the conda binary.
Info 2021-03-26 22:30:36: Searching for workspace virtual envs in: /home/ma/vscode_test
Info 2021-03-26 22:30:36: Searching for workspace virtual envs in: /home/ma/vscode_test/.direnv
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/Envs
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/.direnv
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/.venvs
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/.virtualenvs
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/.local/share/virtualenvs
Info 2021-03-26 22:30:36: Searching for global virtual envs in: /home/ma/envs
Info 2021-03-26 22:30:36: Current value for rule system is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Current value for rule currentPath is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule windowsRegistry is nothing
Info 2021-03-26 22:30:36: Selected Interpreter from cachedInterpreters, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule system is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Current value for rule currentPath is {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Current value for rule windowsRegistry is nothing
Info 2021-03-26 22:30:36: Selected Interpreter from cachedInterpreters, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Display locator refreshing progress, Class name = g, completed in 2ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Selected Interpreter from currentPath, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Selected Interpreter from currentPath, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}
Info 2021-03-26 22:30:36: Selected Interpreter from system, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Selected Interpreter from system, {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}
Info 2021-03-26 22:30:36: Found: /usr/bin/python --> /usr/bin/python2.7
Info 2021-03-26 22:30:36: Found: /usr/bin/python2 --> /usr/bin/python2.7
Info 2021-03-26 22:30:36: Found: /usr/bin/python2.7 --> /usr/bin/python2.7
Info 2021-03-26 22:30:36: Found: /usr/bin/python3 --> /usr/bin/python3.8
Info 2021-03-26 22:30:36: Found: /usr/bin/python3.6 --> /usr/bin/python3.6
Info 2021-03-26 22:30:36: Found: /usr/bin/python3.8 --> /usr/bin/python3.8
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 143ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 144ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 133ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 132ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]}}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 132ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: setGlobalInterpreter, Class name = f, completed in 122ms, has a falsy return value, Arg 1: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python3","architecture":3,"sysVersion":"3.8.5 (default, Jan 27 2021, 15:41:15) \n[GCC 9.3.0]","version":{"raw":"3.8.5","major":3,"minor":8,"patch":5,"build":[],"prerelease":[]},"displayName":"Python 3.8.5 64-bit"}, Arg 2: undefined, Return Value: false
Info 2021-03-26 22:30:36: Rule = cachedInterpreters, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from cachedInterpreters
Info 2021-03-26 22:30:36: Rule = cachedInterpreters, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from cachedInterpreters
Info 2021-03-26 22:30:36: Rule = currentPath, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from currentPath
Info 2021-03-26 22:30:36: Rule = currentPath, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from currentPath
Info 2021-03-26 22:30:36: Rule = system, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from system
Info 2021-03-26 22:30:36: Rule = system, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from system
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 234ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 230ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 234ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 230ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 234ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 230ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Python interpreter path: /usr/bin/python3
Starting Jedi Python language engine.
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables, /home/ma/vscode_test/vscode_test.ipynb
Error 2021-03-26 22:30:36: Failed to parse version from path: /usr/bin/python [Error: invalid version python
at u (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:198256)
at Object.c [as parseVersion] (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:197565)
at p.buildPathEnvInfo (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29369)
at e (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29057)
at Array.map ()
at /home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29222
at async o (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:1:53891)]
Info 2021-03-26 22:30:36: [object Object]. Shell identified as undefined
Info 2021-03-26 22:30:36: Shell path '/bin/bash'
Info 2021-03-26 22:30:36: Shell path identified as shell 'bash'
Info 2021-03-26 22:30:36: Terminal shell path '/bin/bash' identified as shell 'bash'
Info 2021-03-26 22:30:36: [object Object]. Shell identified as bash
Info 2021-03-26 22:30:36: Shell identified as 'bash'
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables,
Info 2021-03-26 22:30:36: Cached data exists getEnvironmentVariables,
Info 2021-03-26 22:30:36: Display locator refreshing progress, Class name = g, completed in 7ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: Searching for conda.
Info 2021-03-26 22:30:36: Probing conda binary: conda
Info 2021-03-26 22:30:36: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-03-26 22:30:36: [Error: spawn conda ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:267:19)
at onErrorNT (internal/child_process.js:469:16)
at processTicksAndRejections (internal/process/task_queues.js:84:21)] {
errno: 'ENOENT',
code: 'ENOENT',
syscall: 'spawn conda',
path: 'conda',
spawnargs: [ 'info', '--json' ]
}
Info 2021-03-26 22:30:36: Searching for conda.
Info 2021-03-26 22:30:36: > conda --version

conda --version
Info 2021-03-26 22:30:36: Current value for rule workspaceEnvs is nothing
Info 2021-03-26 22:30:36: [Error: Command failed: "/usr/bin/python3.6" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py"
Traceback (most recent call last):
File "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py", line 30, in
runpy.run_path(module, run_name="main")
File "/usr/lib/python3.6/runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py", line 4, in
import json
ModuleNotFoundError: No module named 'json'

at ChildProcess.exithandler (child_process.js:312:12)
at ChildProcess.emit (events.js:315:20)
at maybeClose (internal/child_process.js:1021:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5)] {

killed: false,
code: 1,
signal: null,
cmd: '"/usr/bin/python3.6" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/pyvsc-run-isolated.py" "/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/pythonFiles/interpreterInfo.py"'
}
Info 2021-03-26 22:30:36: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-03-26 22:30:36: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-03-26 22:30:36: Rule = workspaceEnvs, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from workspaceEnvs
Info 2021-03-26 22:30:36: Rule = workspaceEnvs, result = runNextRule
Info 2021-03-26 22:30:36: Executing next rule from workspaceEnvs
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 435ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test/vscode_test.ipynb, Return Value: undefined
Info 2021-03-26 22:30:36: autoSelectInterpreter, Class name = f, completed in 431ms, has a falsy return value, Arg 1: Uri:/home/ma/vscode_test, Return Value: undefined
Info 2021-03-26 22:30:53: Activation Commands received undefined for shell bash
Info 2021-03-26 22:30:53: getActivatedEnvironmentVariables, Class name = P, completed in 42ms, has a falsy return value, Arg 1: undefined, Arg 2: {"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.18 (default, Mar 8 2021, 13:02:45) \n[GCC 9.3.0]","version":{"raw":"2.7.18","major":2,"minor":7,"patch":18,"build":[],"prerelease":[]},"displayName":"Python 2.7.18 64-bit"}, Arg 3: false
Info 2021-03-26 22:31:08: Cached data exists getEnvironmentVariables, extension-output-#5

@greazer
Copy link
Member

greazer commented Mar 30, 2021

@ma137, we're not sure why this is happening for you. However, there is at least a chance that the reason the December build of our extension worked for you is because there was a bug in that build that accidentally made it work. From what we can see in the logs you've sent the behavior is all expected. But, since we don't have

Would it be possible for you to send us a stripped down copy snippet of the your ipynb file? We don't need cells with source or output. Also, could you send us the /home/ma/.local/share/jupyter/kernels/python2/kernel.json file? This still may not be enough to figure out what's happening, but it can at least validate or invalidate some theories we have.

@ma137
Copy link
Author

ma137 commented Mar 30, 2021

@greazer, you can find the requested data below:

Source of the Python 3 Jupyter notebook
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "2"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "1+1"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8.5"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}
Content of /home/ma/.local/share/jupyter/kernels/python2/kernel.json
{
 "display_name": "Python 2", 
 "language": "python", 
 "argv": [
  "python", 
  "-m", 
  "ipykernel_launcher", 
  "-f", 
  "{connection_file}"
 ]
}

@ma137
Copy link
Author

ma137 commented Mar 30, 2021

In order to check if some strange configuration on my computer is causing this problem, I tried to reproduce the problem in a virtual machine (using VirtualBox on Ubuntu 20.04). I was able to reproduce the problem:

  • Install Ubuntu 18.04 (yes, I tried a different version). Use the minimal installation mode.
  • Open a terminal and run sudo apt update and sudo apt install python3 jupyter-notebook
  • Install VS Code Insiders. Install the Python and the Jupyter extension therein.
  • Run Jupyter using jupyter notebook on the command line and create a simple Python 3 notebook.
  • Open the notebook in VS Code Insiders. -> Everything works as expected, cells can be executed. (Close VS Code Insiders.)
  • Install Python 2 by executing sudo apt install python on the command line.
  • Open the notebook in VS Code Insiders. -> The described error appears: Python 2.7.[...] 64-bit requires ipykernel to be installed.

Maybe these information are helpful for you.

@greazer greazer added this to the May 2021 Release milestone Apr 1, 2021
@greazer greazer added the info-needed Issue requires more information from poster label Apr 1, 2021
@greazer greazer removed this from the May 2021 Release milestone Apr 1, 2021
@greazer greazer removed the regression label Apr 1, 2021
@ma137
Copy link
Author

ma137 commented Apr 8, 2021

Dear @greazer, the "info-needed" label, you added approx. 7 days ago, confuses me a little. I thought that I had provided all requested data.

@IanMatthewHuff
Copy link
Member

@ma137 I'm not sure about the info needed, but I believe that your issue is linked to this problem here:
#5454
Error 2021-03-26 22:30:35: Failed to parse version from path: /usr/bin/python [Error: invalid version python at u (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:198256) at Object.c [as parseVersion] (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:9:197565) at p.buildPathEnvInfo (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29369) at e (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29057) at Array.map () at /home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:80:29222 at async o (/home/ma/.vscode-insiders/extensions/ms-python.python-2021.3.680753044/out/client/extension.js:1:53891)]
The python extension is trying to parse your usr/bin/python and erroring out which throws off our code to locate the other interpreters on the system. I think that we'll either need an update from the python team or an update on our side to handle the error from the interpreter parsing.

@allefeld
Copy link

allefeld commented Apr 12, 2021

I believe I have the same or at least a similar problem. Whenever I create a new notebook, in a fresh workspace, it always tries to run the system Python 2.7. That's even though the Conda Python 3.8.8 I actually want to use is configured both as setting python.defaultInterpreterPath and is shown in the status bar before creating the notebook. I previously commented on an issue under vscode-python: microsoft/vscode-python#3033 (comment)

Two things I don't understand:

  • How does Jupyter extension kernel selection relate to the interpreter configured / selected in the Python extension? Why doesn't the Jupyter extension ask the Python extension which interpreter to use?

  • How does the Jupyter extension obtain the list of kernels? Optimally, I would simply like to exclude the system Python(s) as well as the 'base' Conda Python from the list.

Apart from fixing this behavior, is there a workaround, e.g. a template .vscode/settings.json I could copy into new workspace (folder)?

Debian 10.9, (mini) Conda 4.92, VS Code 1.55.1

When my preferred environment std is activated, Jupyter lists the following kernels:

$ jupyter kernelspec list
Available kernels:
  pycharm-acdba489                                          /home/ca/.local/share/jupyter/kernels/pycharm-acdba489
  python38264bitstdcondafbc71e15ee1847f1ad9c90ba15b2ed53    /home/ca/.local/share/jupyter/kernels/python38264bitstdcondafbc71e15ee1847f1ad9c90ba15b2ed53
  python3                                                   /home/ca/.conda/envs/std/share/jupyter/kernels/python3

I then deleted the old kernels under .local, and now they don't show up in the kernel list in VS Code anymore. Progress! But I have no idea why the Jupyter extension thinks there are kernels associated with the system Python(s). When no environment is activated jupyter kernelspec list doesn't work, because there is no Jupyter installed.

(relevant part of) Jupyter Output while creating new notebook:

Info 2021-04-12 20:39:24: Getting preferred kernel for file:///home/ca/work/Projects/tst/test4.ipynb
Info 2021-04-12 20:39:24: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-04-12 20:39:24: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-04-12 20:39:24: findPreferredKernel score for Python 3 is 1
Info 2021-04-12 20:39:24: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-04-12 20:39:24: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-04-12 20:39:24: Find kernel spec, Class name = D, completed in 1ms, has a truthy return value, Arg 1: <Uri:/home/ca/work/Projects/tst/test4.ipynb>, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.16-final","major":2,"minor":7,"patch":16,"prerelease":["final"],"build":[],"version":"2.7.16-final"},"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","sysPrefix":"/usr","fileHash":"d5f32b6370a8696c194d00546df04f1efa3043ceeb8d8fb8a382dfa45b35c7150beac34c8e0374f8f60aad630d3409190a7d702df4ea1a455e52c60a56983eeb","envType":"Unknown","displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.16-final","major":2,"minor":7,"patch":16,"prerelease":["final"],"build":[],"version":"2.7.16-final"},"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","sysPrefix":"/usr","fileHash":"d5f32b6370a8696c194d00546df04f1efa3043ceeb8d8fb8a382dfa45b35c7150beac34c8e0374f8f60aad630d3409190a7d702df4ea1a455e52c60a56983eeb","envType":"Unknown","displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-04-12 20:39:24: Computing working directory file:///home/ca/work/Projects/tst/test4.ipynb
Info 2021-04-12 20:39:24: Connecting to raw session for file:///home/ca/work/Projects/tst/test4.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.16-final","major":2,"minor":7,"patch":16,"prerelease":["final"],"build":[],"version":"2.7.16-final"},"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","sysPrefix":"/usr","fileHash":"d5f32b6370a8696c194d00546df04f1efa3043ceeb8d8fb8a382dfa45b35c7150beac34c8e0374f8f60aad630d3409190a7d702df4ea1a455e52c60a56983eeb","envType":"Unknown","displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.16-final","major":2,"minor":7,"patch":16,"prerelease":["final"],"build":[],"version":"2.7.16-final"},"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","sysPrefix":"/usr","fileHash":"d5f32b6370a8696c194d00546df04f1efa3043ceeb8d8fb8a382dfa45b35c7150beac34c8e0374f8f60aad630d3409190a7d702df4ea1a455e52c60a56983eeb","envType":"Unknown","displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-04-12 20:39:24: Starting raw kernel Python 2.7.16 64-bit
Info 2021-04-12 20:39:24: installMissingDependencies /usr/bin/python
Info 2021-04-12 20:39:24: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-04-12 20:39:24: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.5.702919634/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.5.702919634/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-04-12 20:39:24: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.5.702919634/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.5.702919634/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

@Pascal66
Copy link

Same problem:
Version: 1.56.0-insider (user setup)
Commit: 9a4d524f909e09079fec7abb82f2efde2172da7c
Date: 2021-04-27T06:15:26.914Z
Electron: 12.0.4
Chrome: 89.0.4389.114
Node.js: 14.16.0
V8: 8.9.255.24-electron.0
OS: Windows_NT x64 10.0.19042
Jupiter v2021.6.780948196
Connecting to kernel: Python 2.7.17 64-bit
Could not install ipykernel.

@aditya18007
Copy link

On Ubuntu. 20.04 There is an option to set Kernel. To the right of option "Jupyter Server" (top right corner) . Use Pyhton 3.8

@cbjistcc
Copy link

cbjistcc commented May 6, 2021

very interesting. I did followig thing and solved this problem.

  1. Run code on Jupyter, then, it will tell you python 2.7 cannot work.
  2. Select Jupyter server from local to remote. It will restart.
  3. Then, in you setting, change it back to local.
  4. You can work with Jupyter correctly with python 3.0

@DonJayamanne
Copy link
Contributor

DonJayamanne commented May 7, 2021

how do I get the full log

You should be able to just go in there and select all using ctrl+a and copy & paste into github.
Or use the mouse and scroll up.

@rchiodo
Copy link
Contributor

rchiodo commented May 7, 2021

@allefeld when you create a new notebook, what shows for the kernel in the upper right?

For example, a new notebook for myself will show this:

image

Does yours show a Python 3 kernel or the Python 2 that is attempting to run?

@allefeld
Copy link

allefeld commented May 7, 2021

Ah okay, I thought you meant a log file somewhere.

Here it is:
User belongs to experiment group 'pythonJediLSP'
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'pythonSurveyNotificationcf'
User belongs to experiment group 'jupyterEnhancedDataViewer'
Info 2021-05-07 18:12:23: ZMQ install verified.
Info 2021-05-07 18:12:23: id is bd0fb7fc-f426-45f6-822a-57d3aee0c086
Info 2021-05-07 18:12:24: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:12:24: Found existing keyfile at /home/ca/.config/Code/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-07 18:12:24: Check if Notebook is Trusted, Class name = p, completed in 0ms, has a truthy return value, Return Value: true
Info 2021-05-07 18:12:24: Loading web panel for file:///home/ca/work/Projects/phant/scratch.ipynb
Info 2021-05-07 18:12:24: Loading webview. View is notset
Info 2021-05-07 18:12:24: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:12:24: Loading web view...
Info 2021-05-07 18:12:24: Webview panel created.
Info 2021-05-07 18:12:24: initialize CommonMessageCoordinator
Info 2021-05-07 18:12:24: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:24: Created and initailized CommonMessageCoordinator
Info 2021-05-07 18:12:24: Creating raw notebook for file:///home/ca/work/Projects/phant/scratch.ipynb
Info 2021-05-07 18:12:24: Getting preferred kernel for file:///home/ca/work/Projects/phant/scratch.ipynb
Info 2021-05-07 18:12:24: Search all interpreters /home/ca/.conda/envs/std/bin/python, /opt/conda/bin/python, /usr/bin/python, /usr/bin/python3
Info 2021-05-07 18:12:25: Cached data exists getEnvironmentVariables, 
Info 2021-05-07 18:12:25: Cached data exists getEnvironmentVariables, 
Info 2021-05-07 18:12:25: Loading kernelspec from /home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json for /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:25: Loading kernelspec from /usr/local/share/jupyter/kernels/python3/kernel.json for undefined
Info 2021-05-07 18:12:25: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:12:25: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:12:25: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 18:12:25: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 18:12:25: Kernel python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af matches Python 3.8.8 64-bit ('std': conda) based on path in argv.
Info 2021-05-07 18:12:25: findPreferredKernel score for Python 2.7.16 64-bit is 3
Info 2021-05-07 18:12:25: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 115
Info 2021-05-07 18:12:25: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:12:25: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:12:25: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:12:25: Find kernel spec, Class name = x, completed in 640ms, has a truthy return value, Arg 1: , Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.8"},"orig_nbformat":2,"kernelspec":{"name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","display_name":"Python 3.8.8 64-bit ('std': conda)"}}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"},"interpreter":{"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"},"id":".python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af./home/ca/.conda/envs/std/bin/python./home/ca/.conda/envs/std/bin/python.Python 3.8.8 64-bit ('std': conda)"}
Info 2021-05-07 18:12:25: Computing working directory file:///home/ca/work/Projects/phant/scratch.ipynb
Info 2021-05-07 18:12:25: Connecting to raw session for file:///home/ca/work/Projects/phant/scratch.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"},"interpreter":{"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"},"id":".python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af./home/ca/.conda/envs/std/bin/python./home/ca/.conda/envs/std/bin/python.Python 3.8.8 64-bit ('std': conda)"}
Info 2021-05-07 18:12:25: Starting raw kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:12:25: installMissingDependencies /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:26: Web view react rendered
Info 2021-05-07 18:12:26: Request for onigasm file at /home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 18:12:26: Request for tmlanguage file.
Info 2021-05-07 18:12:26: Searching for token colors ...
Info 2021-05-07 18:12:26: Attempting search for colors ...
Info 2021-05-07 18:12:26: Searching for token colors ...
Info 2021-05-07 18:12:26: Attempting search for colors ...
Info 2021-05-07 18:12:26: Searching for token colors ...
Info 2021-05-07 18:12:26: Attempting search for colors ...
Info 2021-05-07 18:12:26: Searching for token colors ...
Info 2021-05-07 18:12:26: Attempting search for colors ...
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-07 18:12:26: Creating daemon pool for /home/ca/.conda/envs/std/bin/python with env variables count 73
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 18:12:26: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 18:12:26: Install Missing Dependencies, Class name = v, completed in 1856ms, has a falsy return value, Return Value: undefined
Info 2021-05-07 18:12:26: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-07 18:12:26: Launching kernel daemon for Python 3.8.8 64-bit ('std': conda) # /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:27: Fetching interpreter variables of Conda environment to be used as env vars of Kernel
Info 2021-05-07 18:12:27: Creating daemon process for /home/ca/.conda/envs/std/bin/python with env variables count 73
Info 2021-05-07 18:12:27: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-07 18:12:27: Got custom variables for Kernel owned by a conda interpreter
Info 2021-05-07 18:12:27: Searching for token colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Searching for token colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Searching for token colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Searching for token colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Attempting search for colors ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Execute rpc method exec_module in DS Daemon
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Execute rpc method exec_module from /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"21867833-fc72-4ceb-a4e5-cc93b1965c41"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-35631Wim26ZRDd1r.json']
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"21867833-fc72-4ceb-a4e5-cc93b1965c41"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-35631Wim26ZRDd1r.json']
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Exec in DS Kernel Launcher Daemon (observable) ['/home/ca/.conda/envs/std/bin/python', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"21867833-fc72-4ceb-a4e5-cc93b1965c41"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-35631Wim26ZRDd1r.json']
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): Kernel launched, with PID 3899
Warn 2021-05-07 18:12:27: Python Daemon (pid: 3897): Waiting for Kernel to die 3899
Info 2021-05-07 18:12:27: Launching kernel daemon, Class name = h, completed in 262ms, has a truthy return value, Arg 1: , Arg 2: "/home/ca/work/Projects/phant", Arg 3: {"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"21867833-fc72-4ceb-a4e5-cc93b1965c41\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-35631Wim26ZRDd1r.json"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"}, Arg 4: {"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"}, Return Value: 
Info 2021-05-07 18:12:27: Launching kernel in kernelProcess.ts, Class name = b, completed in 263ms, has a truthy return value, Arg 1: "/home/ca/work/Projects/phant", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/home/ca/.conda/envs/std/bin/python","_handle":{"pid":3897},"spawnargs":["/home/ca/.conda/envs/std/bin/python","/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":3897,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: Using colors to generate CSS ...
Info 2021-05-07 18:12:27: KernelProcess output: Content-Length: 345
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n","pid":3897}}Content-Length: 323
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n"}}
Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:12:27: KernelProcess output: Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":3897}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}Content-Length: 371
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '21867833-fc72-4ceb-a4e5-cc93b1965c41' instead of 'b"21867833-fc72-4ceb-a4e5-cc93b1965c41"'.\n","pid":3897}}Content-Length: 349
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '21867833-fc72-4ceb-a4e5-cc93b1965c41' instead of 'b"21867833-fc72-4ceb-a4e5-cc93b1965c41"'.\n"}}Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":3897}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}
Warn 2021-05-07 18:12:27: Kernel 3897 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Warn 2021-05-07 18:12:27: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): write to stderr: warn(

Warn 2021-05-07 18:12:27: Kernel 3897 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:12:27: StdErr from Kernel Process warn(

Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '21867833-fc72-4ceb-a4e5-cc93b1965c41' instead of 'b"21867833-fc72-4ceb-a4e5-cc93b1965c41"'.

Warn 2021-05-07 18:12:27: Kernel 3897 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '21867833-fc72-4ceb-a4e5-cc93b1965c41' instead of 'b"21867833-fc72-4ceb-a4e5-cc93b1965c41"'.

Warn 2021-05-07 18:12:27: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '21867833-fc72-4ceb-a4e5-cc93b1965c41' instead of 'b"21867833-fc72-4ceb-a4e5-cc93b1965c41"'.

Info 2021-05-07 18:12:27: Python Daemon (pid: 3897): write to stderr: warn(

Warn 2021-05-07 18:12:27: Kernel 3897 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:12:27: StdErr from Kernel Process warn(

Info 2021-05-07 18:12:28: Raw session started and connected
Started kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:12:28: Initial setup for file:///home/ca/work/Projects/phant/scratch.ipynb starting ...
Info 2021-05-07 18:12:28: UpdateWorkingDirectoryAndPath
Info 2021-05-07 18:12:28: Kernel switching to busy
Info 2021-05-07 18:12:28: Kernel switching to idle
Info 2021-05-07 18:12:28: Starting raw kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:12:28: installMissingDependencies /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:28: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:12:28: Kernel switching to busy
Info 2021-05-07 18:12:28: Kernel switching to idle
Info 2021-05-07 18:12:28: Initial setup complete for file:///home/ca/work/Projects/phant/scratch.ipynb
Info 2021-05-07 18:12:28: Finished connecting 4261647d-00c0-4959-a9cb-9f045ba494e5
Info 2021-05-07 18:12:28: Registering commtarget jupyter.widget
Info 2021-05-07 18:12:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:28: IPyWidgetScriptSource.initialize
Info 2021-05-07 18:12:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:28: Install Missing Dependencies, Class name = v, completed in 389ms, has a falsy return value, Return Value: undefined
Info 2021-05-07 18:12:28: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-07 18:12:28: Launching kernel daemon for Python 3.8.8 64-bit ('std': conda) # /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:28: Fetching interpreter variables of Conda environment to be used as env vars of Kernel
Info 2021-05-07 18:12:28: Creating daemon process for /home/ca/.conda/envs/std/bin/python with env variables count 73
Info 2021-05-07 18:12:28: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-07 18:12:28: Got custom variables for Kernel owned by a conda interpreter
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Execute rpc method exec_module in DS Daemon
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Execute rpc method exec_module from /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"1232c691-460f-4e7c-8579-4cd22f9320fb"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-3563HskQGdbcy38u.json']
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"1232c691-460f-4e7c-8579-4cd22f9320fb"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-3563HskQGdbcy38u.json']
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Exec in DS Kernel Launcher Daemon (observable) ['/home/ca/.conda/envs/std/bin/python', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"1232c691-460f-4e7c-8579-4cd22f9320fb"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-3563HskQGdbcy38u.json']
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): Kernel launched, with PID 3928
Warn 2021-05-07 18:12:29: Python Daemon (pid: 3926): Waiting for Kernel to die 3928
Info 2021-05-07 18:12:29: Launching kernel daemon, Class name = h, completed in 77ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/scratch.ipynb, Arg 2: "/home/ca/work/Projects/phant", Arg 3: {"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme="hmac-sha256"","--Session.key=b"1232c691-460f-4e7c-8579-4cd22f9320fb"","--shell=9007","--transport="tcp"","--iopub=9009","--f=/tmp/tmp-3563HskQGdbcy38u.json"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"}, Arg 4: {"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"}, Return Value:
Info 2021-05-07 18:12:29: Launching kernel in kernelProcess.ts, Class name = b, completed in 77ms, has a truthy return value, Arg 1: "/home/ca/work/Projects/phant", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/home/ca/.conda/envs/std/bin/python","_handle":{"pid":3926},"spawnargs":["/home/ca/.conda/envs/std/bin/python","/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":3926,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-07 18:12:29: KernelProcess output: Content-Length: 345
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n","pid":3926}}Content-Length: 323
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n"}}
Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:12:29: KernelProcess output: Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":3926}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}Content-Length: 371
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '1232c691-460f-4e7c-8579-4cd22f9320fb' instead of 'b"1232c691-460f-4e7c-8579-4cd22f9320fb"'.\n","pid":3926}}Content-Length: 349
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '1232c691-460f-4e7c-8579-4cd22f9320fb' instead of 'b"1232c691-460f-4e7c-8579-4cd22f9320fb"'.\n"}}Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":3926}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}
Warn 2021-05-07 18:12:29: Kernel 3926 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Warn 2021-05-07 18:12:29: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): write to stderr: warn(

Warn 2021-05-07 18:12:29: Kernel 3926 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:12:29: StdErr from Kernel Process warn(

Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '1232c691-460f-4e7c-8579-4cd22f9320fb' instead of 'b"1232c691-460f-4e7c-8579-4cd22f9320fb"'.

Warn 2021-05-07 18:12:29: Kernel 3926 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '1232c691-460f-4e7c-8579-4cd22f9320fb' instead of 'b"1232c691-460f-4e7c-8579-4cd22f9320fb"'.

Warn 2021-05-07 18:12:29: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '1232c691-460f-4e7c-8579-4cd22f9320fb' instead of 'b"1232c691-460f-4e7c-8579-4cd22f9320fb"'.

Info 2021-05-07 18:12:29: Python Daemon (pid: 3926): write to stderr: warn(

Warn 2021-05-07 18:12:29: Kernel 3926 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:12:29: StdErr from Kernel Process warn(

Info 2021-05-07 18:12:53: Loading web panel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:12:53: Loading webview. View is notset
Info 2021-05-07 18:12:53: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:12:53: Loading web view...
Info 2021-05-07 18:12:53: Webview panel created.
Info 2021-05-07 18:12:53: initialize CommonMessageCoordinator
Info 2021-05-07 18:12:53: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:53: Created and initailized CommonMessageCoordinator
Info 2021-05-07 18:12:53: Creating raw notebook for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:12:53: Getting preferred kernel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:12:53: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:12:53: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:12:53: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:12:53: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:12:53: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:12:53: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/test.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:12:53: Computing working directory file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:12:53: Connecting to raw session for file:///home/ca/work/Projects/phant/test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:12:53: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:12:53: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:12:53: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:12:53: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:12:53: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Error 2021-05-07 18:12:53: Install Missing Dependencies, Class name = v, completed in 49ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:12:53: Raw session failed to start because dependencies not installed
Info 2021-05-07 18:12:53: Shutdown session -- complete
Error 2021-05-07 18:12:53: Failed to determine if a notebook is active for the current editor [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:12:53: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:12:55: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:12:55: Web view react rendered
Info 2021-05-07 18:12:55: Request for onigasm file at /home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 18:12:55: Request for tmlanguage file.
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Searching for token colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Attempting search for colors ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:12:55: Using colors to generate CSS ...
Info 2021-05-07 18:13:03: Executing cell 8f0097a3-c21a-4f05-bbee-27e825e52549
Info 2021-05-07 18:13:03: Waiting for jupyter server and web panel ...
Info 2021-05-07 18:13:03: Creating raw notebook for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:13:03: Getting preferred kernel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:13:03: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:13:03: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:13:03: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:13:03: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:13:03: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:13:03: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/test.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:13:03: Computing working directory file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:13:03: Connecting to raw session for file:///home/ca/work/Projects/phant/test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:13:03: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:13:03: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:13:03: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:13:03: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:13:03: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:15:39: Check if Notebook is Trusted, Class name = p, completed in 0ms, has a truthy return value, Return Value: true
Info 2021-05-07 18:15:39: Loading web panel for file:///home/ca/work/Projects/phant/scratch2.ipynb
Info 2021-05-07 18:15:39: Loading webview. View is notset
Info 2021-05-07 18:15:39: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:15:39: Loading web view...
Info 2021-05-07 18:15:39: Webview panel created.
Info 2021-05-07 18:15:39: initialize CommonMessageCoordinator
Info 2021-05-07 18:15:39: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:15:39: Created and initailized CommonMessageCoordinator
Info 2021-05-07 18:15:39: Creating raw notebook for file:///home/ca/work/Projects/phant/scratch2.ipynb
Info 2021-05-07 18:15:39: Getting preferred kernel for file:///home/ca/work/Projects/phant/scratch2.ipynb
Info 2021-05-07 18:15:39: findPreferredKernel score for Python 2.7.16 64-bit is 3
Info 2021-05-07 18:15:39: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 115
Info 2021-05-07 18:15:39: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:15:39: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:15:39: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:15:39: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/scratch2.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.8.8"},"orig_nbformat":2,"kernelspec":{"name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","display_name":"Python 3.8.8 64-bit ('std': conda)"}}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"},"interpreter":{"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"},"id":".python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af./home/ca/.conda/envs/std/bin/python./home/ca/.conda/envs/std/bin/python.Python 3.8.8 64-bit ('std': conda)"}
Info 2021-05-07 18:15:39: Computing working directory file:///home/ca/work/Projects/phant/scratch2.ipynb
Info 2021-05-07 18:15:39: Connecting to raw session for file:///home/ca/work/Projects/phant/scratch2.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"},"interpreter":{"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"},"id":".python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af./home/ca/.conda/envs/std/bin/python./home/ca/.conda/envs/std/bin/python.Python 3.8.8 64-bit ('std': conda)"}
Info 2021-05-07 18:15:39: Starting raw kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:15:39: installMissingDependencies /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:39: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:15:40: Install Missing Dependencies, Class name = v, completed in 391ms, has a falsy return value, Return Value: undefined
Info 2021-05-07 18:15:40: Kernel launching with ports 9010,9011,9012,9013,9014. Start port is 9000
Info 2021-05-07 18:15:40: Launching kernel daemon for Python 3.8.8 64-bit ('std': conda) # /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:40: Fetching interpreter variables of Conda environment to be used as env vars of Kernel
Info 2021-05-07 18:15:40: Creating daemon process for /home/ca/.conda/envs/std/bin/python with env variables count 73
Info 2021-05-07 18:15:40: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-07 18:15:40: Got custom variables for Kernel owned by a conda interpreter
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Execute rpc method exec_module in DS Daemon
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Execute rpc method exec_module from /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9013', '--control=9011', '--hb=9010', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"', '--shell=9012', '--transport="tcp"', '--iopub=9014', '--f=/tmp/tmp-3563EjHI3VEPXgdz.json']
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9013', '--control=9011', '--hb=9010', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"', '--shell=9012', '--transport="tcp"', '--iopub=9014', '--f=/tmp/tmp-3563EjHI3VEPXgdz.json']
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Exec in DS Kernel Launcher Daemon (observable) ['/home/ca/.conda/envs/std/bin/python', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9013', '--control=9011', '--hb=9010', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"', '--shell=9012', '--transport="tcp"', '--iopub=9014', '--f=/tmp/tmp-3563EjHI3VEPXgdz.json']
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): Kernel launched, with PID 4338
Warn 2021-05-07 18:15:40: Python Daemon (pid: 4336): Waiting for Kernel to die 4338
Info 2021-05-07 18:15:40: Launching kernel daemon, Class name = h, completed in 78ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/scratch2.ipynb, Arg 2: "/home/ca/work/Projects/phant", Arg 3: {"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9013","--control=9011","--hb=9010","--Session.signature_scheme="hmac-sha256"","--Session.key=b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"","--shell=9012","--transport="tcp"","--iopub=9014","--f=/tmp/tmp-3563EjHI3VEPXgdz.json"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"}, Arg 4: {"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"}, Return Value:
Info 2021-05-07 18:15:40: Launching kernel in kernelProcess.ts, Class name = b, completed in 79ms, has a truthy return value, Arg 1: "/home/ca/work/Projects/phant", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/home/ca/.conda/envs/std/bin/python","_handle":{"pid":4336},"spawnargs":["/home/ca/.conda/envs/std/bin/python","/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":4336,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-07 18:15:40: KernelProcess output: Content-Length: 345
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n","pid":4336}}Content-Length: 323
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n"}}
Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:15:40: KernelProcess output: Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":4336}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}Content-Length: 371
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc' instead of 'b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"'.\n","pid":4336}}Content-Length: 349
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc' instead of 'b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"'.\n"}}Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":4336}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}
Warn 2021-05-07 18:15:40: Kernel 4336 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Warn 2021-05-07 18:15:40: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): write to stderr: warn(

Warn 2021-05-07 18:15:40: Kernel 4336 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:15:40: StdErr from Kernel Process warn(

Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc' instead of 'b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"'.

Warn 2021-05-07 18:15:40: Kernel 4336 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc' instead of 'b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"'.

Warn 2021-05-07 18:15:40: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc' instead of 'b"65b9c3d4-0592-4ed4-8ea8-a91c67cbe2fc"'.

Info 2021-05-07 18:15:40: Python Daemon (pid: 4336): write to stderr: warn(

Warn 2021-05-07 18:15:40: Kernel 4336 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:15:40: StdErr from Kernel Process warn(

Info 2021-05-07 18:15:40: Web view react rendered
Info 2021-05-07 18:15:40: Request for onigasm file at /home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 18:15:40: Request for tmlanguage file.
Info 2021-05-07 18:15:40: Searching for token colors ...
Info 2021-05-07 18:15:40: Attempting search for colors ...
Info 2021-05-07 18:15:40: Searching for token colors ...
Info 2021-05-07 18:15:40: Attempting search for colors ...
Info 2021-05-07 18:15:40: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:40: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Searching for token colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Raw session started and connected
Started kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:15:41: Initial setup for file:///home/ca/work/Projects/phant/scratch2.ipynb starting ...
Info 2021-05-07 18:15:41: UpdateWorkingDirectoryAndPath
Info 2021-05-07 18:15:41: Kernel switching to busy
Info 2021-05-07 18:15:41: Kernel switching to idle
Info 2021-05-07 18:15:41: Starting raw kernel Python 3.8.8 64-bit ('std': conda)
Info 2021-05-07 18:15:41: installMissingDependencies /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:41: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Kernel switching to busy
Info 2021-05-07 18:15:41: Kernel switching to idle
Info 2021-05-07 18:15:41: Initial setup complete for file:///home/ca/work/Projects/phant/scratch2.ipynb
Info 2021-05-07 18:15:41: Finished connecting 4261647d-00c0-4959-a9cb-9f045ba494e5
Info 2021-05-07 18:15:41: Registering commtarget jupyter.widget
Info 2021-05-07 18:15:41: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:15:41: IPyWidgetScriptSource.initialize
Info 2021-05-07 18:15:41: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Attempting search for colors ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Using colors to generate CSS ...
Info 2021-05-07 18:15:41: Install Missing Dependencies, Class name = v, completed in 441ms, has a falsy return value, Return Value: undefined
Info 2021-05-07 18:15:41: Kernel launching with ports 9015,9016,9017,9018,9019. Start port is 9000
Info 2021-05-07 18:15:41: Launching kernel daemon for Python 3.8.8 64-bit ('std': conda) # /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:41: Fetching interpreter variables of Conda environment to be used as env vars of Kernel
Info 2021-05-07 18:15:41: Creating daemon process for /home/ca/.conda/envs/std/bin/python with env variables count 73
Info 2021-05-07 18:15:41: Process Execution: > ~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
~/.conda/envs/std/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-07 18:15:41: Got custom variables for Kernel owned by a conda interpreter
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Execute rpc method exec_module in DS Daemon
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Execute rpc method exec_module from /home/ca/.conda/envs/std/bin/python
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9018', '--control=9016', '--hb=9015', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"e5b85097-c2f7-4e11-8704-2f23a33afca7"', '--shell=9017', '--transport="tcp"', '--iopub=9019', '--f=/tmp/tmp-3563mvs39DbBPlcu.json']
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9018', '--control=9016', '--hb=9015', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"e5b85097-c2f7-4e11-8704-2f23a33afca7"', '--shell=9017', '--transport="tcp"', '--iopub=9019', '--f=/tmp/tmp-3563mvs39DbBPlcu.json']
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Exec in DS Kernel Launcher Daemon (observable) ['/home/ca/.conda/envs/std/bin/python', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9018', '--control=9016', '--hb=9015', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"e5b85097-c2f7-4e11-8704-2f23a33afca7"', '--shell=9017', '--transport="tcp"', '--iopub=9019', '--f=/tmp/tmp-3563mvs39DbBPlcu.json']
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-07 18:15:41: Python Daemon (pid: 4396): Kernel launched, with PID 4401
Warn 2021-05-07 18:15:41: Python Daemon (pid: 4396): Waiting for Kernel to die 4401
Info 2021-05-07 18:15:41: Launching kernel daemon, Class name = h, completed in 73ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/scratch2.ipynb, Arg 2: "/home/ca/work/Projects/phant", Arg 3: {"specFile":"/home/ca/.conda/envs/std/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/ca/.conda/envs/std/bin/python","name":"python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af","argv":["/home/ca/.conda/envs/std/bin/python","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9018","--control=9016","--hb=9015","--Session.signature_scheme="hmac-sha256"","--Session.key=b"e5b85097-c2f7-4e11-8704-2f23a33afca7"","--shell=9017","--transport="tcp"","--iopub=9019","--f=/tmp/tmp-3563mvs39DbBPlcu.json"],"language":"python","path":"/home/ca/.conda/envs/std/bin/python","display_name":"Python 3.8.8 64-bit ('std': conda)"}, Arg 4: {"sysPrefix":"/home/ca/.conda/envs/std","envType":"Conda","envName":"std","envPath":"/home/ca/.conda/envs/std","path":"/home/ca/.conda/envs/std/bin/python","architecture":3,"sysVersion":"3.8.8 | packaged by conda-forge | (default, Feb 20 2021, 16:22:27) \n[GCC 9.3.0]","version":{"raw":"3.8.8","major":3,"minor":8,"patch":8,"build":[],"prerelease":["final","0"]},"companyDisplayName":"Anaconda, Inc.","displayName":"Python 3.8.8 64-bit ('std': conda)"}, Return Value:
Info 2021-05-07 18:15:41: Launching kernel in kernelProcess.ts, Class name = b, completed in 74ms, has a truthy return value, Arg 1: "/home/ca/work/Projects/phant", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/home/ca/.conda/envs/std/bin/python","_handle":{"pid":4396},"spawnargs":["/home/ca/.conda/envs/std/bin/python","/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":4396,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-07 18:15:41: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:15:41: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:15:42: KernelProcess output: Content-Length: 345
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n","pid":4396}}Content-Length: 323
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' \u2013 or use CUnicode.\n"}}
Info 2021-05-07 18:15:42: Python Daemon (pid: 4396): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:15:42: KernelProcess output: Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":4396}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}Content-Length: 371
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'e5b85097-c2f7-4e11-8704-2f23a33afca7' instead of 'b"e5b85097-c2f7-4e11-8704-2f23a33afca7"'.\n","pid":4396}}Content-Length: 349
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":"/home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'e5b85097-c2f7-4e11-8704-2f23a33afca7' instead of 'b"e5b85097-c2f7-4e11-8704-2f23a33afca7"'.\n"}}Content-Length: 104
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"log","params":{"level":"INFO","msg":"write to stderr: warn(\n","pid":4396}}Content-Length: 82
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc":"2.0","method":"output","params":{"source":"stderr","out":" warn(\n"}}
Warn 2021-05-07 18:15:42: Kernel 4396 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Warn 2021-05-07 18:15:42: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use 'hmac-sha256' instead of '"hmac-sha256"' – or use CUnicode.

Info 2021-05-07 18:15:42: Python Daemon (pid: 4396): write to stderr: warn(

Warn 2021-05-07 18:15:42: Kernel 4396 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:15:42: StdErr from Kernel Process warn(

Info 2021-05-07 18:15:42: Python Daemon (pid: 4396): write to stderr: /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'e5b85097-c2f7-4e11-8704-2f23a33afca7' instead of 'b"e5b85097-c2f7-4e11-8704-2f23a33afca7"'.

Warn 2021-05-07 18:15:42: Kernel 4396 as possibly died, StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'e5b85097-c2f7-4e11-8704-2f23a33afca7' instead of 'b"e5b85097-c2f7-4e11-8704-2f23a33afca7"'.

Warn 2021-05-07 18:15:42: StdErr from Kernel Process /home/ca/.conda/envs/std/lib/python3.8/site-packages/traitlets/traitlets.py:2151: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'e5b85097-c2f7-4e11-8704-2f23a33afca7' instead of 'b"e5b85097-c2f7-4e11-8704-2f23a33afca7"'.

Info 2021-05-07 18:15:42: Python Daemon (pid: 4396): write to stderr: warn(

Warn 2021-05-07 18:15:42: Kernel 4396 as possibly died, StdErr from Kernel Process warn(

Warn 2021-05-07 18:15:42: StdErr from Kernel Process warn(

Error 2021-05-07 18:15:43: Install Missing Dependencies, Class name = v, completed in 160265ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:15:43: Raw session failed to start because dependencies not installed
Info 2021-05-07 18:15:43: Shutdown session -- complete
Error 2021-05-07 18:15:43: Exception attempting to start notebook: [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:15:43: Exception executing cell 8f0097a3-c21a-4f05-bbee-27e825e52549: [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:15:43: Finished executing cell 8f0097a3-c21a-4f05-bbee-27e825e52549
Error 2021-05-07 18:15:43: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:17:16: Loading web panel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:16: Loading webview. View is notset
Info 2021-05-07 18:17:16: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:17:16: Loading web view...
Info 2021-05-07 18:17:16: Webview panel created.
Info 2021-05-07 18:17:16: initialize CommonMessageCoordinator
Info 2021-05-07 18:17:16: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:17:16: Created and initailized CommonMessageCoordinator
Info 2021-05-07 18:17:16: Creating raw notebook for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:16: Getting preferred kernel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:16: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:17:16: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:17:16: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:17:16: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:17:16: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:17:16: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/test.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:17:16: Computing working directory file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:16: Connecting to raw session for file:///home/ca/work/Projects/phant/test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:17:16: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:17:16: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:17:16: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:17:16: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"

/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:17:16: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Error 2021-05-07 18:17:16: Install Missing Dependencies, Class name = v, completed in 45ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:17:16: Raw session failed to start because dependencies not installed
Info 2021-05-07 18:17:16: Shutdown session -- complete
Error 2021-05-07 18:17:16: Failed to determine if a notebook is active for the current editor [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:17:16: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:17:17: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:17:17: Web view react rendered
Info 2021-05-07 18:17:17: Request for onigasm file at /home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 18:17:17: Request for tmlanguage file.
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Searching for token colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Attempting search for colors ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:17: Using colors to generate CSS ...
Info 2021-05-07 18:17:34: Executing cell a5d3ef57-5ff3-4e3a-88d6-4af57b360676
Info 2021-05-07 18:17:34: Waiting for jupyter server and web panel ...
Info 2021-05-07 18:17:34: Creating raw notebook for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:34: Getting preferred kernel for file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:34: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:17:34: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:17:34: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:17:34: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:17:34: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:17:34: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/test.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:17:34: Computing working directory file:///home/ca/work/Projects/phant/test.ipynb
Info 2021-05-07 18:17:34: Connecting to raw session for file:///home/ca/work/Projects/phant/test.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:17:34: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:17:34: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:17:34: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:17:34: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:17:34: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Error 2021-05-07 18:24:08: Install Missing Dependencies, Class name = v, completed in 394870ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:24:08: Raw session failed to start because dependencies not installed
Info 2021-05-07 18:24:08: Shutdown session -- complete
Error 2021-05-07 18:24:08: Exception attempting to start notebook: [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:24:08: Exception executing cell a5d3ef57-5ff3-4e3a-88d6-4af57b360676: [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:24:08: Finished executing cell a5d3ef57-5ff3-4e3a-88d6-4af57b360676
Error 2021-05-07 18:24:08: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:24:19: Kernel switching to busy
Info 2021-05-07 18:24:19: Kernel switching to idle
Info 2021-05-07 18:35:07: Loading web panel for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:07: Loading webview. View is notset
Info 2021-05-07 18:35:07: Attempting to start a server because of preload conditions ...
Info 2021-05-07 18:35:07: Loading web view...
Info 2021-05-07 18:35:07: Webview panel created.
Info 2021-05-07 18:35:07: initialize CommonMessageCoordinator
Info 2021-05-07 18:35:07: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:35:07: Created and initailized CommonMessageCoordinator
Info 2021-05-07 18:35:07: Creating raw notebook for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:07: Getting preferred kernel for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:07: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:35:07: Search all interpreters /home/ca/.conda/envs/std/bin/python, /opt/conda/bin/python, /usr/bin/python, /usr/bin/python3
Info 2021-05-07 18:35:07: Kernel python388jvsc74a57bd0fbea4c25f81cca0b54ce50f7705152da7f54ab6399b2e12770bd8d662511a9af matches Python 3.8.8 64-bit ('std': conda) based on path in argv.
Info 2021-05-07 18:35:07: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:35:07: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:35:07: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:35:07: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:35:07: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:35:07: Find kernel spec, Class name = x, completed in 41ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/Untitled-1.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:35:07: Computing working directory untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:07: Connecting to raw session for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:35:07: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:35:07: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:35:07: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:35:07: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:35:07: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Error 2021-05-07 18:35:07: Install Missing Dependencies, Class name = v, completed in 25ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:35:07: Raw session failed to start because dependencies not installed
Info 2021-05-07 18:35:07: Shutdown session -- complete
Error 2021-05-07 18:35:07: Failed to determine if a notebook is active for the current editor [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Error 2021-05-07 18:35:07: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.16 64-bit:/usr/bin/python
at v.installMissingDependencies (/home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)] {
category: 'noipykernel',
reason: 1
}
Info 2021-05-07 18:35:08: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 18:35:08: Web view react rendered
Info 2021-05-07 18:35:08: Request for onigasm file at /home/ca/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 18:35:08: Request for tmlanguage file.
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Searching for token colors ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Loading colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:08: Attempting search for colors ...
Info 2021-05-07 18:35:08: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Attempting search for colors ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Loading base colors from /usr/share/code/resources/app/extensions/theme-defaults/themes/light_plus.json ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:09: Using colors to generate CSS ...
Info 2021-05-07 18:35:15: Executing cell 5023eed6-ee16-495c-8a8f-240f2898a10e
Info 2021-05-07 18:35:15: Waiting for jupyter server and web panel ...
Info 2021-05-07 18:35:15: Creating raw notebook for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:15: Getting preferred kernel for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:15: findPreferredKernel score for Python 2.7.16 64-bit is 1
Info 2021-05-07 18:35:15: findPreferredKernel score for Python 3.8.8 64-bit ('std': conda) is 1
Info 2021-05-07 18:35:15: findPreferredKernel score for Python 3 is 1
Info 2021-05-07 18:35:15: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 18:35:15: findPreferredKernel score for Python 3.7.3 64-bit is 1
Info 2021-05-07 18:35:15: Find kernel spec, Class name = x, completed in 1ms, has a truthy return value, Arg 1: Uri:/home/ca/work/Projects/phant/Untitled-1.ipynb, Arg 2: {"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":3},"orig_nbformat":2}, Arg 3: undefined, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:35:15: Computing working directory untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb
Info 2021-05-07 18:35:15: Connecting to raw session for untitled:/home/ca/work/Projects/phant/Untitled-1.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/ca/.local/share/jupyter/kernels/python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.16 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]","version":{"raw":"2.7.16","major":2,"minor":7,"patch":16,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.16 64-bit"},"id":".python2716jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.16 64-bit"}
Info 2021-05-07 18:35:15: Starting raw kernel Python 2.7.16 64-bit
Info 2021-05-07 18:35:15: installMissingDependencies /usr/bin/python
Info 2021-05-07 18:35:15: Cached data exists getEnvironmentVariables,
Info 2021-05-07 18:35:15: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:35:15: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 18:35:22: Kernel switching to busy
Info 2021-05-07 18:35:22: Kernel switching to idle
Info 2021-05-07 18:38:26: Kernel switching to busy
Info 2021-05-07 18:38:26: Kernel switching to idle
Info 2021-05-07 18:38:27: Kernel switching to busy
Info 2021-05-07 18:38:27: Kernel switching to idle

@DonJayamanne
Copy link
Contributor

Thanks for providing the logs, much appreciated.

@allefeld
Copy link

allefeld commented May 7, 2021

what shows for the kernel in the upper right?

Directly after creation, it looks like this:

Screenshot_20210507_184742

i.e. I can't even see the kernel version, it's cut off.

When I click on the field, the kernel selection drop box opens, and the first entry (2.7) seems to be activated:

Screenshot_20210507_185451

@rchiodo
Copy link
Contributor

rchiodo commented May 7, 2021

That sounds like a different bug then. Your default kernel is 2.7. We should probably be defaulting to the kernel that matches the active interpreter.

@rchiodo
Copy link
Contributor

rchiodo commented May 7, 2021

If you open a notebook that actually has a Python 3 kernel specified, does it work?

@allefeld
Copy link

allefeld commented May 7, 2021

If I save the new notebook without selecting a kernel, it looks like this:

{
 "metadata": {
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": 3
  },
  "orig_nbformat": 2
 },
 "nbformat": 4,
 "nbformat_minor": 2,
 "cells": [
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ]
}

@allefeld
Copy link

allefeld commented May 7, 2021

If you open a notebook that actually has a Python 3 kernel specified, does it work?

Yes, if I open again a notebook where I selected the correct kernel, that kernel is used again. The problem occurs only for newly created notebooks.

@aramier
Copy link

aramier commented May 7, 2021

Sorry for being late at the party. I am attaching here my configuration, jupyter logs, and screenshot. A few minor differences with other reports

  • My usecase is slightly different: I use pure python files and use the "run cell" lens to get the output in interactive python, but I also tried jupyter notebooks and I get the same error.
  • Jupyter server icon (upper right of the screen) is red and shows "Not started" instead of "Busy"

Logs

Log for pure python + cells
User belongs to experiment group 'pythonJoinMailingListVar2'
User belongs to experiment group 'pythonJediLSPcf'
User belongs to experiment group 'jupyterTest'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'pythonSurveyNotificationcf'
User belongs to experiment group 'jupyterEnhancedDataViewer'
Error 2021-05-07 13:32:56: Exception while attempting zmq : [Error: /snap/core/current/usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/prebuilds/linux-x64/electron.napi.glibc.node)
	at process.func [as dlopen] (electron/js2c/asar_bundle.js:5:1846)
	at Object.Module._extensions..node (internal/modules/cjs/loader.js:1185:18)
	at Object.func [as .node] (electron/js2c/asar_bundle.js:5:1846)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at load (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/node-gyp-build/index.js:21:10)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/lib/native.js:6:43)
	at Module.u._compile (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:1311)
	at Object.Module._extensions..js (internal/modules/cjs/loader.js:1155:10)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/lib/index.js:3:16)
	at Module.u._compile (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:1311)
	at Object.Module._extensions..js (internal/modules/cjs/loader.js:1155:10)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:295963)
	at n (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:1:186)
	at d.zmqSupported (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443665)
	at d.isSupportedForLocalLaunch (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443315)
	at d.supported (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443225)
	at Object.t.registerTypes (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:52:805731)
	at /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:52:271349
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:823793
	at async t.activate (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:823480)
	at async Promise.all (index 0)]
Info 2021-05-07 13:32:56: id is 1f031d5a-524f-47d7-bd23-b469c79cf6a7
Info 2021-05-07 13:32:56: Found existing keyfile at /home/aramier/.config/Code/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-07 13:32:57: Search all interpreters /home/aramier/.pyenv/versions/3.8.7/bin/python, /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python, /home/aramier/.pyenv/versions/3.8.7/envs/tc8/bin/python, /usr/bin/python, /usr/bin/python3, /home/aramier/anaconda3/bin/python, /home/aramier/.pyenv/versions/ghg38/bin/python
Info 2021-05-07 13:32:57: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 13:32:57: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 13:32:57: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/share/jupyter/kernels/python3/kernel.json for /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/anaconda3/share/jupyter/kernels/python3/kernel.json for /home/aramier/anaconda3/bin/python
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.pyenv/versions/ghg38/share/jupyter/kernels/python3/kernel.json for /home/aramier/.pyenv/versions/ghg38/bin/python
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/juliapro_v1.5.3-1-1.5/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python38564bitbasecondaa817e10ddb01440d958ccf579c7a097b/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python385jvsc74a57bd03d50443cba7b771e593dfebd163643e9c3dd7d9007ff0eefe1fdd3d63a535f31/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python385jvsc74a57bd04d2e15db9810fe6f2a2c19c6ebcbec1e32afc048fb101218756a1843d852b1cf/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python38764bitghg38cbb2126b4fc0413691bba21c6460ddb6/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0471d827aa7792e5dde8988b19ee8e00bca7d3b6cf8d91b16e45d35f1af2c4e2d/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd07b2c6e8e09c6d1380567bcbbf0a8313794db3fbaedd83ce3bb43bc00b5fd2f71/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0b339f648b5405c83a271ed3ae31a0cc62128ed6e9df26219dfef9761712c306a/kernel.json for undefined
Info 2021-05-07 13:32:57: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0baa5718b6dcf0e550094ca1a4238d3eefca43d5eacdfd213fb86cb0da9f0fdfb/kernel.json for undefined
Info 2021-05-07 13:32:57: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 13:32:57: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 13:32:57: Kernel python385jvsc74a57bd04d2e15db9810fe6f2a2c19c6ebcbec1e32afc048fb101218756a1843d852b1cf matches Python 3.7.6 64-bit ('base': conda) based on metadata path.
Info 2021-05-07 13:32:57: Kernel python38764bitghg38cbb2126b4fc0413691bba21c6460ddb6 matches Python 3.8.7 64-bit ('ghg38': pyenv) based on metadata path.
Info 2021-05-07 13:32:57: Kernel python387jvsc74a57bd0b339f648b5405c83a271ed3ae31a0cc62128ed6e9df26219dfef9761712c306a matches Python 3.8.7 64-bit ('ghg38': pyenv) based on metadata path.
Info 2021-05-07 13:32:58: Process Execution: > ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 13:32:58: Process Execution: > ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 13:32:58: Process Execution: > ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> ~/anaconda3/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-07 15:09:39: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:09:39: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:09:39: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-07 15:33:53: Loading webview. View is notset
Info 2021-05-07 15:33:53: Loading web view...
Info 2021-05-07 15:33:53: Webview panel created.
Info 2021-05-07 15:33:53: Waiting for jupyter server and web panel ...
Info 2021-05-07 15:33:53: Checking for server existence.
Info 2021-05-07 15:33:53: Checking for server usability.
Info 2021-05-07 15:33:53: Starting notebook server.
Info 2021-05-07 15:33:53: Connecting to history server
Info 2021-05-07 15:33:53: Getting kernel specs for history server
Info 2021-05-07 15:33:53: Launching history server
Info 2021-05-07 15:33:53: Starting Notebook
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for JuliaPro_v1.5.3-1 1.5.3 is -1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.5 64-bit ('conda-ops': conda) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('ghg38') is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('ghg-analysis') is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('ghg38': pyenv) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('ghg-analysis': pyenv) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('3.8.7': pyenv) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.8.7 64-bit ('tc8': pyenv) is 1
Info 2021-05-07 15:33:53: findPreferredKernel score for Python 3.6.9 64-bit is 1
Info 2021-05-07 15:33:53: Find kernel spec, Class name = x, completed in 5ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/aramier/.local/share/jupyter/kernels/python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.17 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.17 64-bit"}
Info 2021-05-07 15:33:53: initialize CommonMessageCoordinator
Info 2021-05-07 15:33:53: Generating custom default config at /tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py
Info 2021-05-07 15:33:53: Starting Jupyter Notebook
Starting Jupyter from ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python with command line --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
Info 2021-05-07 15:33:53: Creating daemon pool for /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python with env variables count 108
Info 2021-05-07 15:33:53: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 15:33:53: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 15:33:53: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 15:33:53: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) -m jupyter notebook --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) -m jupyter notebook --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
Info 2021-05-07 15:33:53: Waiting for Jupyter Notebook
Info 2021-05-07 15:33:53: Python Daemon (pid: 22087): Execute rpc method exec_module_observable in DS Daemon
Info 2021-05-07 15:33:53: Python Daemon (pid: 22087): Execute rpc method exec_module_observable from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:53: Python Daemon (pid: 22087): Exec in DS Daemon (observable) jupyter with args ['notebook', '--no-browser', '--notebook-dir="/home/aramier/test"', '--config=/tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py', '--NotebookApp.iopub_data_rate_limit=10000000000.0']
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): Starting notebook with args ['--no-browser', '--notebook-dir="/home/aramier/test"', '--config=/tmp/user/1001/35139f7f-b611-4efb-ab3d-ae035266b2c9/jupyter_notebook_config.py', '--NotebookApp.iopub_data_rate_limit=10000000000.0']
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(

/home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(

Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test

[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test

Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:

[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:

Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

[I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

Info 2021-05-07 15:33:54: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.292 NotebookApp]  or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

[I 15:33:54.292 NotebookApp]  or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
[I 15:33:54.292 NotebookApp]  or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

Info 2021-05-07 15:33:54: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.292 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method exec_file in DS Daemon
[I 15:33:54.292 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
[I 15:33:54.292 NotebookApp]  or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
[I 15:33:54.292 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [C 15:33:54.295 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22087-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
     or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method exec_file in DS Daemon
[C 15:33:54.295 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22087-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
     or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
Info 2021-05-07 15:33:54: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:33:54.292 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:33:54.292 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:33:54.292 NotebookApp] http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
[I 15:33:54.292 NotebookApp]  or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
[I 15:33:54.292 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 15:33:54.295 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22087-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9
     or http://127.0.0.1:8888/?token=9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9

Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Connecting to process for history server
Info 2021-05-07 15:33:54: Creating jupyter server: e601d0d0-9db6-47cb-8734-2e8aba868dcd
Info 2021-05-07 15:33:54: Connecting server e601d0d0-9db6-47cb-8734-2e8aba868dcd kernelSpec Python 2.7.17 64-bit
Info 2021-05-07 15:33:54: Creating server with settings : {"baseUrl":"http://localhost:8888/","appUrl":"","wsUrl":"ws://localhost:8888/","token":"9ed2170836b9c939c579442853240ab2e4da0e8f351b1dc9","init":{"cache":"no-store","credentials":"same-origin"}}
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): pinged with hello
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): pinged with hello
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 15:33:54: Python Daemon (pid: 22087): write to stderr: [I 15:33:54.512 NotebookApp] Creating new notebook in /

[I 15:33:54.512 NotebookApp] Creating new notebook in /
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 15:33:54: installMissingDependencies /usr/bin/python
Info 2021-05-07 15:33:54: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 15:33:54: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 15:33:54: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method exec_file in DS Daemon
Info 2021-05-07 15:33:54: Web view react rendered
Info 2021-05-07 15:33:54: Request for onigasm file at /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 15:33:54: Request for tmlanguage file.
Info 2021-05-07 15:33:54: Searching for token colors ...
Info 2021-05-07 15:33:54: Attempting search for colors ...
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method exec_file in DS Daemon
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:33:54: Searching for token colors ...
Info 2021-05-07 15:33:54: Attempting search for colors ...
Info 2021-05-07 15:33:54: Searching for token colors ...
Info 2021-05-07 15:33:54: Attempting search for colors ...
Info 2021-05-07 15:33:54: Searching for token colors ...
Info 2021-05-07 15:33:54: Attempting search for colors ...
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:33:54: Python Daemon (pid: 22086): pinged with hello
Info 2021-05-07 15:33:54: Python Daemon (pid: 22085): pinged with hello
Info 2021-05-07 15:33:55: Searching for token colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Searching for token colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Searching for token colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Searching for token colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Attempting search for colors ...
Info 2021-05-07 15:33:55: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Info 2021-05-07 15:33:55: Using colors to generate CSS ...
Error 2021-05-07 15:35:00: Install Missing Dependencies, Class name = v, completed in 66023ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-05-07 15:35:00: Check if a kernel is usable, Class name = _, completed in 66029ms, has a falsy return value, Arg 1: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/aramier/.local/share/jupyter/kernels/python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.17 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.17 64-bit"}, Arg 2: <argument cannot be serialized for logging>, Arg 3: false, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-05-07 15:35:00: Failed to change kernel, re-throwing [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:00: Shutdown session -- complete
Error 2021-05-07 15:35:00: Failed to connect to server [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:00: Killing server because of error Error: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
Info 2021-05-07 15:35:00: Disposing HostJupyterServer
Info 2021-05-07 15:35:00: Shutting down notebooks for e601d0d0-9db6-47cb-8734-2e8aba868dcd
Info 2021-05-07 15:35:00: Shut down session manager : existing
Info 2021-05-07 15:35:00: Disposing session manager
Info 2021-05-07 15:35:00: SessionManager - dispose contents manager
Info 2021-05-07 15:35:00: ShutdownSessionAndConnection - dispose session manager
Info 2021-05-07 15:35:00: Finished disposing jupyter session manager
Info 2021-05-07 15:35:00: Shutdown server - dispose conn info
Info 2021-05-07 15:35:00: Finished disposing HostJupyterServer
Error 2021-05-07 15:35:00: Failed to initialize ipywidgetHandler [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-05-07 15:35:00: Exception attempting to start notebook:  [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:00: Closing interactive window: Interactive - #1
Info 2021-05-07 15:35:00: Closing interactive window: Interactive - #1
Error 2021-05-07 15:35:00: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:00: Submitting code for 43e074e5-fb5a-42f5-bce0-cf671bebc823
Info 2021-05-07 15:35:00: Waiting for jupyter server and web panel ...
Info 2021-05-07 15:35:00: Checking for server existence.
Info 2021-05-07 15:35:00: Checking for server usability.
Info 2021-05-07 15:35:00: Starting notebook server.
Info 2021-05-07 15:35:00: Connecting to history server
Info 2021-05-07 15:35:00: Getting kernel specs for history server
Info 2021-05-07 15:35:00: Launching history server
Info 2021-05-07 15:35:00: Starting Notebook
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for JuliaPro_v1.5.3-1 1.5.3 is -1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.5 64-bit ('conda-ops': conda) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.5 64-bit ('base': conda) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('ghg38') is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('ghg-analysis') is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('ghg38': pyenv) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('ghg-analysis': pyenv) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('3.8.7': pyenv) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.8.7 64-bit ('tc8': pyenv) is 1
Info 2021-05-07 15:35:00: findPreferredKernel score for Python 3.6.9 64-bit is 1
Info 2021-05-07 15:35:00: Find kernel spec, Class name = x, completed in 3ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/aramier/.local/share/jupyter/kernels/python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.17 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.17 64-bit"}
Info 2021-05-07 15:35:00: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-07 15:35:00: Generating custom default config at /tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py
Info 2021-05-07 15:35:00: Starting Jupyter Notebook
Starting Jupyter from ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python with command line --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
Info 2021-05-07 15:35:00: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) -m jupyter notebook --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) -m jupyter notebook --no-browser --notebook-dir="/home/aramier/test" --config=/tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
Info 2021-05-07 15:35:00: Waiting for Jupyter Notebook
Info 2021-05-07 15:35:00: Python Daemon (pid: 22172): Execute rpc method exec_module_observable in DS Daemon
Info 2021-05-07 15:35:00: Python Daemon (pid: 22172): Execute rpc method exec_module_observable from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:00: Python Daemon (pid: 22172): Exec in DS Daemon (observable) jupyter with args ['notebook', '--no-browser', '--notebook-dir="/home/aramier/test"', '--config=/tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py', '--NotebookApp.iopub_data_rate_limit=10000000000.0']
Info 2021-05-07 15:35:00: Python Daemon (pid: 22172): Starting notebook with args ['--no-browser', '--notebook-dir="/home/aramier/test"', '--config=/tmp/user/1001/0617fd52-b872-479c-8972-4c7ee79c0de6/jupyter_notebook_config.py', '--NotebookApp.iopub_data_rate_limit=10000000000.0']
Info 2021-05-07 15:35:00: Python Daemon (pid: 22172): write to stderr: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(

/home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
Info 2021-05-07 15:35:00: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(

Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test

[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test

Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:

[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:

Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

[I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

Info 2021-05-07 15:35:01: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.106 NotebookApp]  or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

[I 15:35:01.106 NotebookApp]  or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
[I 15:35:01.106 NotebookApp]  or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

Info 2021-05-07 15:35:01: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.106 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method exec_file in DS Daemon
[I 15:35:01.106 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
[I 15:35:01.106 NotebookApp]  or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
[I 15:35:01.106 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [C 15:35:01.109 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22172-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
     or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method exec_file in DS Daemon
[C 15:35:01.109 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22172-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
     or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
Info 2021-05-07 15:35:01: /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/lib/python3.8/site-packages/traitlets/traitlets.py:2196: FutureWarning: Supporting extra quotes around Unicode is deprecated in traitlets 5.0. Use '/home/aramier/test' instead of '"/home/aramier/test"' – or use CUnicode.
  warn(
[I 15:35:01.106 NotebookApp] Serving notebooks from local directory: /home/aramier/test
[I 15:35:01.106 NotebookApp] Jupyter Notebook 6.2.0 is running at:
[I 15:35:01.106 NotebookApp] http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
[I 15:35:01.106 NotebookApp]  or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
[I 15:35:01.106 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 15:35:01.109 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/aramier/.local/share/jupyter/runtime/nbserver-22172-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a
     or http://127.0.0.1:8888/?token=750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a

Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Connecting to process for history server
Info 2021-05-07 15:35:01: Creating jupyter server: 9cf0ae7b-7347-4044-97c2-97ad1ccfed3c
Info 2021-05-07 15:35:01: Connecting server 9cf0ae7b-7347-4044-97c2-97ad1ccfed3c kernelSpec Python 2.7.17 64-bit
Info 2021-05-07 15:35:01: Creating server with settings : {"baseUrl":"http://localhost:8888/","appUrl":"","wsUrl":"ws://localhost:8888/","token":"750d3823ca1c843af1fd9d5d11e5d4fca40358888988288a","init":{"cache":"no-store","credentials":"same-origin"}}
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): pinged with hello
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): pinged with hello
Info 2021-05-07 15:35:01: Python Daemon (pid: 22172): write to stderr: [I 15:35:01.134 NotebookApp] Creating new notebook in /

[I 15:35:01.134 NotebookApp] Creating new notebook in /
Info 2021-05-07 15:35:01: installMissingDependencies /usr/bin/python
Info 2021-05-07 15:35:01: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:35:01: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 15:35:01: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-07 15:35:01: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python (daemon) ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method exec_file in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method exec_file in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method exec_file from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Exec file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py with args []
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): execute file /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/vscode_datascience_helpers/getServerInfo.py
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22086): pinged with hello
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method ping in DS Daemon
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): Execute rpc method ping from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:35:01: Python Daemon (pid: 22085): pinged with hello
Error 2021-05-07 15:35:03: Install Missing Dependencies, Class name = v, completed in 2242ms, has a falsy return value, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-05-07 15:35:03: Check if a kernel is usable, Class name = _, completed in 2243ms, has a falsy return value, Arg 1: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/home/aramier/.local/share/jupyter/kernels/python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"python","display_name":"Python 2.7.17 64-bit","metadata":{"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"}},"env":{}},"interpreter":{"sysPrefix":"/usr","envType":"Unknown","envName":"","envPath":"","path":"/usr/bin/python","architecture":3,"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","version":{"raw":"2.7.17","major":2,"minor":7,"patch":17,"build":[],"prerelease":["final","0"]},"displayName":"Python 2.7.17 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90.python./usr/bin/python.Python 2.7.17 64-bit"}, Arg 2: <argument cannot be serialized for logging>, Arg 3: false, Return Value: undefined [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Error 2021-05-07 15:35:03: Failed to change kernel, re-throwing [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:03: Shutdown session -- complete
Error 2021-05-07 15:35:03: Failed to connect to server [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:03: Killing server because of error Error: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
Info 2021-05-07 15:35:03: Disposing HostJupyterServer
Info 2021-05-07 15:35:03: Shutting down notebooks for 9cf0ae7b-7347-4044-97c2-97ad1ccfed3c
Info 2021-05-07 15:35:03: Shut down session manager : existing
Info 2021-05-07 15:35:03: Disposing session manager
Info 2021-05-07 15:35:03: SessionManager - dispose contents manager
Info 2021-05-07 15:35:03: ShutdownSessionAndConnection - dispose session manager
Info 2021-05-07 15:35:03: Finished disposing jupyter session manager
Info 2021-05-07 15:35:03: Shutdown server - dispose conn info
Info 2021-05-07 15:35:03: Finished disposing HostJupyterServer
Error 2021-05-07 15:35:03: Exception attempting to start notebook:  [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:03: Closing interactive window: Interactive - #1
Error 2021-05-07 15:35:03: DataScience Error [a [Error]: IPyKernel not installed into interpreter Python 2.7.17 64-bit:/usr/bin/python
	at v.installMissingDependencies (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:244710)
	at runMicrotasks (<anonymous>)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)] {
  category: 'noipykernel',
  reason: 1
}
Info 2021-05-07 15:35:03: Process Execution: > ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> ~/.pyenv/versions/3.8.7/envs/ghg38/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Logs for jupyter notebook mode
User belongs to experiment group 'pythonJoinMailingListVar2'
User belongs to experiment group 'pythonJediLSPcf'
User belongs to experiment group 'jupyterTest'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'pythonSurveyNotificationcf'
User belongs to experiment group 'jupyterEnhancedDataViewer'
Error 2021-05-07 15:41:45: Exception while attempting zmq : [Error: /snap/core/current/usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/prebuilds/linux-x64/electron.napi.glibc.node)
	at process.func [as dlopen] (electron/js2c/asar_bundle.js:5:1846)
	at Object.Module._extensions..node (internal/modules/cjs/loader.js:1185:18)
	at Object.func [as .node] (electron/js2c/asar_bundle.js:5:1846)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at load (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/node-gyp-build/index.js:21:10)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/lib/native.js:6:43)
	at Module.u._compile (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:1311)
	at Object.Module._extensions..js (internal/modules/cjs/loader.js:1155:10)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/zeromq/lib/index.js:3:16)
	at Module.u._compile (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:1311)
	at Object.Module._extensions..js (internal/modules/cjs/loader.js:1155:10)
	at Module.load (internal/modules/cjs/loader.js:982:32)
	at Module._load (internal/modules/cjs/loader.js:823:14)
	at Function.f._load (electron/js2c/asar_bundle.js:5:12684)
	at Function.s._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:27816)
	at Function.S._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:106:24532)
	at Function.a._load (/snap/code/63/usr/share/code/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:96:58822)
	at Module.require (internal/modules/cjs/loader.js:1006:19)
	at v (/snap/code/63/usr/share/code/resources/app/out/vs/loader.js:4:694)
	at Object.<anonymous> (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:295963)
	at n (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:1:186)
	at d.zmqSupported (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443665)
	at d.isSupportedForLocalLaunch (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443315)
	at d.supported (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:443225)
	at Object.t.registerTypes (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:52:805731)
	at /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:52:271349
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:823793
	at async t.activate (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:823480)
	at async Promise.all (index 0)]
Info 2021-05-07 15:41:45: id is 4c967ba4-8ae7-481a-8322-96e651436a52
Info 2021-05-07 15:41:45: Found existing keyfile at /home/aramier/.config/Code/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-07 15:41:45: Loading web panel for file:///home/aramier/test/test.ipynb
Info 2021-05-07 15:41:45: Loading webview. View is notset
Info 2021-05-07 15:41:45: Attempting to start a server because of preload conditions ...
Info 2021-05-07 15:41:45: Loading web view...
Info 2021-05-07 15:41:45: Webview panel created.
Info 2021-05-07 15:41:45: initialize CommonMessageCoordinator
Info 2021-05-07 15:41:45: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 15:41:45: Created and initailized CommonMessageCoordinator
Info 2021-05-07 15:41:46: Search all interpreters /home/aramier/.pyenv/versions/3.8.7/bin/python, /home/aramier/anaconda3/bin/python, /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python, /home/aramier/.pyenv/versions/3.8.7/envs/tc8/bin/python, /usr/bin/python, /usr/bin/python3
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/anaconda3/share/jupyter/kernels/python3/kernel.json for /home/aramier/anaconda3/bin/python
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/share/jupyter/kernels/python3/kernel.json for /home/aramier/.pyenv/versions/3.8.7/envs/ghg38/bin/python
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/juliapro_v1.5.3-1-1.5/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python38564bitbasecondaa817e10ddb01440d958ccf579c7a097b/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python385jvsc74a57bd03d50443cba7b771e593dfebd163643e9c3dd7d9007ff0eefe1fdd3d63a535f31/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python385jvsc74a57bd04d2e15db9810fe6f2a2c19c6ebcbec1e32afc048fb101218756a1843d852b1cf/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python38764bitghg38cbb2126b4fc0413691bba21c6460ddb6/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0471d827aa7792e5dde8988b19ee8e00bca7d3b6cf8d91b16e45d35f1af2c4e2d/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd07b2c6e8e09c6d1380567bcbbf0a8313794db3fbaedd83ce3bb43bc00b5fd2f71/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0b339f648b5405c83a271ed3ae31a0cc62128ed6e9df26219dfef9761712c306a/kernel.json for undefined
Info 2021-05-07 15:41:46: Loading kernelspec from /home/aramier/.local/share/jupyter/kernels/python387jvsc74a57bd0baa5718b6dcf0e550094ca1a4238d3eefca43d5eacdfd213fb86cb0da9f0fdfb/kernel.json for undefined
Info 2021-05-07 15:41:46: Kernel python38564bitbasecondaa817e10ddb01440d958ccf579c7a097b matches Python 3.7.6 64-bit ('base': conda) based on metadata path.
Info 2021-05-07 15:41:46: Kernel python387jvsc74a57bd0b339f648b5405c83a271ed3ae31a0cc62128ed6e9df26219dfef9761712c306a matches Python 3.8.7 64-bit ('ghg38': pyenv) based on metadata path.
Info 2021-05-07 15:41:46: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:46: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:46: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 15:41:46: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-07 15:41:46: IPyWidgetMessageDispatcher.initialize
Info 2021-05-07 15:41:46: Web view react rendered
Info 2021-05-07 15:41:46: Request for onigasm file at /home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/node_modules/onigasm/lib/onigasm.wasm
Info 2021-05-07 15:41:46: Request for tmlanguage file.
Info 2021-05-07 15:41:46: Searching for token colors ...
Info 2021-05-07 15:41:46: Attempting search for colors ...
Info 2021-05-07 15:41:46: Searching for token colors ...
Info 2021-05-07 15:41:46: Attempting search for colors ...
Info 2021-05-07 15:41:46: Searching for token colors ...
Info 2021-05-07 15:41:46: Attempting search for colors ...
Info 2021-05-07 15:41:46: Searching for token colors ...
Info 2021-05-07 15:41:46: Attempting search for colors ...
Info 2021-05-07 15:41:47: Searching for token colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Searching for token colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Searching for token colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Searching for token colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Attempting search for colors ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Loading base colors from /snap/code/63/usr/share/code/resources/app/extensions/theme-defaults/themes/dark_plus.json ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:47: Using colors to generate CSS ...
Info 2021-05-07 15:41:59: Executing cell c369f568-4582-49de-9757-232141a9a023
Info 2021-05-07 15:41:59: Waiting for jupyter server and web panel ...
Info 2021-05-07 15:41:59: Checking for server existence.
Info 2021-05-07 15:41:59: Checking for server usability.
Info 2021-05-07 15:41:59: Server not usable (should ask for install now)
Info 2021-05-07 15:41:59: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:59: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Error 2021-05-07 15:41:59: Exception attempting to start notebook:  [o [Error]: Jupyter cannot be started. Error attempting to locate jupyter: Data Science libraries notebook and jupyter are not installed in interpreter Python 2.7.17 64-bit.
	at S.startServer (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:54:382764)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async S.createServer (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:54:382059)
	at async connect (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:179008)
	at async D.ensureConnectionAndNotebookImpl (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:627291)
	at async D.ensureConnectionAndNotebook (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:625523)
	at async D.clearResult (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:621185)
	at async D.reexecuteCell (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:607450)
	at async D.reexecuteCells (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:603654)] {
  category: 'jupyterinstall',
  action: 'https://aka.ms/pyaiinstall',
  actionTitle: 'Get more help'
}
Info 2021-05-07 15:41:59: Exception executing cell c369f568-4582-49de-9757-232141a9a023:  [o [Error]: Jupyter cannot be started. Error attempting to locate jupyter: Data Science libraries notebook and jupyter are not installed in interpreter Python 2.7.17 64-bit.
	at S.startServer (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:54:382764)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async S.createServer (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:54:382059)
	at async connect (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:90:179008)
	at async D.ensureConnectionAndNotebookImpl (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:627291)
	at async D.ensureConnectionAndNotebook (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:625523)
	at async D.clearResult (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:621185)
	at async D.reexecuteCell (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:607450)
	at async D.reexecuteCells (/home/aramier/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/out/client/extension.js:37:603654)] {
  category: 'jupyterinstall',
  action: 'https://aka.ms/pyaiinstall',
  actionTitle: 'Get more help'
}
Info 2021-05-07 15:41:59: Finished executing cell c369f568-4582-49de-9757-232141a9a023
Info 2021-05-07 15:41:59: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:59: Cached data exists getEnvironmentVariables, <No Resource>
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-07 15:41:59: Process Execution: > /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode/extensions/ms-toolsai.jupyter-2021.6.811652604/pythonFiles/pyvsc-run-isolated.py -c "import notebook"

Screenshot

image

Configuration

Already given above, but copying here for quick reference:

VS-Code info:

Version: 1.56.0
Commit: cfa2e218100323074ac1948c885448fdf4de2a7f
Date: 2021-05-04T21:58:14.757Z
Electron: 12.0.4
Chrome: 89.0.4389.114
Node.js: 14.16.0
V8: 8.9.255.24-electron.0
OS: Linux x64 5.8.0-50-generic snap

OS info : Ubuntu 20.04.2 LTS

@ma137
Copy link
Author

ma137 commented May 10, 2021

Here are my observations from today using a virtual machine with Ubuntu 18.04, a freshly update VS Code Insiders with freshly updates extensions:

The screenshot below summarizes the situation nicely. Now, the cells in the Python 3 notebook can be executed. It is not trying to use the Python 2 ipykernel, which is not installed. That are indeed good news! However, there is also a problem: While it is running the notebook using Python 3 as it should (it can be seen from the test case 1/2 as well as by running sys.version), it claims to use Python 2.7 (see the blue bar at the lower end of the window).

grafik

Here are the version numbers:

  • VS Code insiders: 1.57.0-insider (commit: 54d33cf14cf6c0e86880b5b74a5a3628de42bce9)
  • Juypter extension (ms-toolsai.jupyter): v2021.6.819764235
  • Python extension (ms-python.python). v2021.4.765268190

The logs will follow soon.

@DonJayamanne
Copy link
Contributor

@ma137 thanks for the information. Looking forward for the logs
And thank you very much for testing with the insider version.

@ma137
Copy link
Author

ma137 commented May 10, 2021

@DonJayamanne So, my VM with Ubuntu 18.04 broke and I had to set it up again. This worked without problems, python3 and jupyter-notebook are installed. I was able to create a test notebook by using jupyter notebook. Subsequently, I installed VS Code Insiders as well as the Python and Jupyter extension. The version numbers are the same as in my last post. However, now I get a different error: The activation of the extension fails with the message "Extension activation failed"

Below you can find a screenshot as well as the logs of the Jupyter extension.

error_message


Here are the logs which are already visible in the screenshot.
Error 2021-05-10 18:38:13: extension activation failed [TypeError: o.getConfiguration(...).get(...).find is not a function
	at new m (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:683169)
	at Object.t.resolveInstance (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:263270)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:262475
	at Object.t.resolve (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:262738)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:253835
	at e._get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:253601)
	at e.get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:252313)
	at a.get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:90:509426)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:245341
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:37:825686
	at async t.activate (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:37:825373)
	at async Promise.all (index 0)]
Error 2021-05-10 18:38:13: Failed to active the Jupyter Extension [TypeError: o.getConfiguration(...).get(...).find is not a function
	at new m (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:683169)
	at Object.t.resolveInstance (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:263270)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:262475
	at Object.t.resolve (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:262738)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:253835
	at e._get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:253601)
	at e.get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:252313)
	at a.get (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:90:509426)
	at /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:52:245341
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async /home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:37:825686
	at async t.activate (/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.819764235/out/client/extension.js:37:825373)
	at async Promise.all (index 0)]

I am a bit confused that I get now this different error. Did I do something wrong?

@DonJayamanne
Copy link
Contributor

@ma137 Ther'es a known issue (bug ) in VS Code insiders.
This will be fix in tomorrows Insider build.
In the mean time, please open your user settings.json file and add the following setting

  "workbench.editorAssociations": [{
    "viewType":"jupyter-notebook",
    "filenamePattern": "*.ipynb"
  }],
  "jupyter.experiments.optInto": ["__NativeNotebookEditor__"],

After that change you should be able to open the notebooks.
Sorry about this bug and please do send the logs when you get this up and running. Thanks

@ma137
Copy link
Author

ma137 commented May 10, 2021

@DonJayamanne Your fix for getting the Jupyter extension running works for me. 👍

With this fix I am able to reproduce the problem described in my first post today. There is only the slight difference that after starting VS Code Insiders and opening the notebook file it does not work directly, although the Jupyter extension starts up. I have to close the notebook inside VS Code Insiders and then reopen it again in order to be able to execute the cells.

Here are my logs, they contain the first as well as the second opening of the notebook:

Logs of the Jupyter extension (log level is debug)
User belongs to experiment group 'pythonJediLSP'
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'jupyterEnhancedDataViewer'
User belongs to experiment group 'NativeNotebookEditor'
Info 2021-05-10 21:49:15: ZMQ install verified.
Info 2021-05-10 21:49:16: Attempting to start a server because of preload conditions ...
Info 2021-05-10 21:49:17: Found existing keyfile at /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-10 21:49:17: Checking if notebook is trusted
Info 2021-05-10 21:49:18: Search all interpreters /usr/bin/python, /usr/bin/python3
Info 2021-05-10 21:49:19: Check if Notebook is Trusted, Class name = p, completed in 1052ms, has a truthy return value, Return Value: true
Info 2021-05-10 21:49:19: Attempting to start a server because of preload conditions ...
Info 2021-05-10 21:49:19: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python
Info 2021-05-10 21:49:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-10 21:49:19: Kernel python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90 matches Python 3.6.9 64-bit based on path in argv.
Info 2021-05-10 21:49:19: findPreferredKernel score for Python 2.7.17 64-bit is 103
Info 2021-05-10 21:49:19: findPreferredKernel score for Python 2.7.17 64-bit is 3
Info 2021-05-10 21:49:19: Find kernel spec, Class name = D, completed in 475ms, has a truthy return value, Arg 1: , Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.9"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit"}
Info 2021-05-10 21:49:19: PreferredConnection: .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:19: TargetController found ID: .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-10 21:49:19: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import pip"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import pip"
Info 2021-05-10 21:49:20: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:20: KernelProvider switched kernel to id = .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit}
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:20: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:20: Process Execution: > /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:20: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:49:20: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:49:21: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:21: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:21: initialize CommonMessageCoordinator
Info 2021-05-10 21:49:21: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:21: Created and initailized CommonMessageCoordinator
Info 2021-05-10 21:49:21: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:21: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:24: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-10 21:49:24: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:28: Execute Cells request 1 0
Info 2021-05-10 21:49:28: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:28: Starting Notebook in kernel.ts id = .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit
Info 2021-05-10 21:49:28: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:28: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:28: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:28: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit"}
Info 2021-05-10 21:49:28: Starting raw kernel Python 2.7.17 64-bit
Info 2021-05-10 21:49:28: installMissingDependencies /usr/bin/python3
Info 2021-05-10 21:49:28: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:28: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:28: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:29: Install Missing Dependencies, Class name = y, completed in 564ms, has a falsy return value, Return Value: undefined
Info 2021-05-10 21:49:29: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-10 21:49:29: Launching kernel daemon for Python 2.7.17 64-bit # /usr/bin/python3
Info 2021-05-10 21:49:29: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-10 21:49:29: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-10 21:49:29: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:49:29: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Execute rpc method exec_module in DS Daemon
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Execute rpc method exec_module from /usr/bin/python3
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce8f0923-f2b8-429e-aa66-ef738242f8fe"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-8087L3tTD8EKLgrG.json']
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce8f0923-f2b8-429e-aa66-ef738242f8fe"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-8087L3tTD8EKLgrG.json']
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce8f0923-f2b8-429e-aa66-ef738242f8fe"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-8087L3tTD8EKLgrG.json']
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-10 21:49:29: Python Daemon (pid: 8211): Kernel launched, with PID 8213
Warn 2021-05-10 21:49:29: Python Daemon (pid: 8211): Waiting for Kernel to die 8213
Info 2021-05-10 21:49:29: Launching kernel daemon, Class name = f, completed in 181ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"ce8f0923-f2b8-429e-aa66-ef738242f8fe\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-8087L3tTD8EKLgrG.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-10 21:49:29: Launching kernel in kernelProcess.ts, Class name = b, completed in 181ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":8211},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":8211,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-10 21:49:30: Raw session started and connected
Started kernel Python 2.7.17 64-bit
Info 2021-05-10 21:49:30: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-10 21:49:30: UpdateWorkingDirectoryAndPath
Info 2021-05-10 21:49:30: Kernel switching to busy
Info 2021-05-10 21:49:30: Kernel switching to idle
Info 2021-05-10 21:49:30: Kernel switching to busy
Info 2021-05-10 21:49:30: Kernel switching to idle
Info 2021-05-10 21:49:30: Starting raw kernel Python 2.7.17 64-bit
Info 2021-05-10 21:49:30: installMissingDependencies /usr/bin/python3
Info 2021-05-10 21:49:30: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:30: Finished connecting 6ad37d71-a0ad-4295-b6f3-6ac264447bba
Info 2021-05-10 21:49:30: Updating preferred kernel for remote notebook 8a51c68d-9d3c-4527-b89a-73fa750e3831
Info 2021-05-10 21:49:30: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is 8a51c68d-9d3c-4527-b89a-73fa750e3831
Info 2021-05-10 21:49:30: UpdateWorkingDirectoryAndPath
Info 2021-05-10 21:49:30: IPyWidgetScriptSource.initialize
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: Registering commtarget jupyter.widget
Info 2021-05-10 21:49:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-10 21:49:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:30: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:49:30: changeDirectoryIfPossible
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: Kernel switching to busy
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:49:30: �[32mPosting message to Notebook UI 
Info 2021-05-10 21:49:30: Kernel switching to idle
Info 2021-05-10 21:49:30: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:49:30: Waiting for idle on (kernel): 8a51c68d-9d3c-4527-b89a-73fa750e3831 -> idle
Info 2021-05-10 21:49:30: Finished waiting for idle on (kernel): 8a51c68d-9d3c-4527-b89a-73fa750e3831 -> idle
Info 2021-05-10 21:49:30: Hooked up kernel restart handler
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:49:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:49:31: Install Missing Dependencies, Class name = y, completed in 666ms, has a falsy return value, Return Value: undefined
Info 2021-05-10 21:49:31: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-10 21:49:31: Launching kernel daemon for Python 2.7.17 64-bit # /usr/bin/python3
Info 2021-05-10 21:49:31: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-10 21:49:31: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:31: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-10 21:49:31: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:49:31: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Execute rpc method exec_module in DS Daemon
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Execute rpc method exec_module from /usr/bin/python3
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce67308c-4ed8-428a-b11e-947f93525c7b"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087e487FWQRE93E.json']
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce67308c-4ed8-428a-b11e-947f93525c7b"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087e487FWQRE93E.json']
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"ce67308c-4ed8-428a-b11e-947f93525c7b"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087e487FWQRE93E.json']
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-10 21:49:31: Python Daemon (pid: 8230): Kernel launched, with PID 8232
Warn 2021-05-10 21:49:31: Python Daemon (pid: 8230): Waiting for Kernel to die 8232
Info 2021-05-10 21:49:31: Launching kernel daemon, Class name = f, completed in 201ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"ce67308c-4ed8-428a-b11e-947f93525c7b\"","--shell=9007","--transport=\"tcp\"","--iopub=9009","--f=/tmp/tmp-8087e487FWQRE93E.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-10 21:49:31: Launching kernel in kernelProcess.ts, Class name = b, completed in 201ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":8230},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":8230,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-10 21:49:38: Execute Cells request 1 0
Info 2021-05-10 21:49:38: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:40: Execute Cells request 1 1
Info 2021-05-10 21:49:40: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:43: Execute Cells request 1 2
Info 2021-05-10 21:49:43: Execute Cell 2 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:44: Trusting notebook...
Info 2021-05-10 21:49:44: Wrote trust for file:///home/ubu/test/Untitled.ipynb to /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsignatures/28bad536c96edafcfd63b738e8dc7ea48f462b8d4efcc6cca357e0042183f267
Info 2021-05-10 21:49:48: Execute Cells request 1 2
Info 2021-05-10 21:49:48: Execute Cell 2 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:53: Trusting notebook...
Info 2021-05-10 21:49:55: Kernel got disposed as a result of notebook.onDisposed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:55: Kernel got disposed, hence there is no longer a kernel associated with file:///home/ubu/test/Untitled.ipynb file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:55: Shutting down session file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:55: Shutdown session - current session
Info 2021-05-10 21:49:55: shutdownSession 8a51c68d-9d3c-4527-b89a-73fa750e3831, .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit - start
Info 2021-05-10 21:49:55: Session can be shutdown .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: kill daemon
Info 2021-05-10 21:49:55: Notebook Closed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:55: Cancel pending cells
Info 2021-05-10 21:49:55: Cancel pending cells
Info 2021-05-10 21:49:55: Cancel pending cells
Info 2021-05-10 21:49:55: Cancel pending cells
Info 2021-05-10 21:49:55: Cancel pending cells
Info 2021-05-10 21:49:55: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 8211}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 8211}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 8211}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 8213", "pid": 8211}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 2, "result": null}
Info 2021-05-10 21:49:55: Python Daemon (pid: 8211): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-10 21:49:55: Python Daemon (pid: 8211): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-10 21:49:55: Python Daemon (pid: 8211): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-10 21:49:55: Python Daemon (pid: 8211): Kill kernel in DS Kernel Launcher Daemon, pid 8213
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: shutdownSession 8a51c68d-9d3c-4527-b89a-73fa750e3831, .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit - shutdown complete
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: Shutdown session - get restart session
Info 2021-05-10 21:49:55: Shutdown session - shutdown restart session
Info 2021-05-10 21:49:55: shutdownSession 5451c6bd-ea55-4863-9077-935f0552414f, .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit - start
Info 2021-05-10 21:49:55: Session can be shutdown .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: kill daemon
Info 2021-05-10 21:49:55: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 8230}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 8230}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 8230}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 8232", "pid": 8230}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 2, "result": null}
Info 2021-05-10 21:49:55: Python Daemon (pid: 8230): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-10 21:49:55: Python Daemon (pid: 8230): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-10 21:49:55: Python Daemon (pid: 8230): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-10 21:49:55: Python Daemon (pid: 8230): Kill kernel in DS Kernel Launcher Daemon, pid 8232
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: shutdownSession 5451c6bd-ea55-4863-9077-935f0552414f, .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit - shutdown complete
Info 2021-05-10 21:49:55: Dispose Kernel process
Info 2021-05-10 21:49:55: Shutdown session -- complete
Info 2021-05-10 21:49:55: KernelProcess Exit Exit - undefined
Info 2021-05-10 21:49:55: KernelProcess Exit Exit - undefined
Info 2021-05-10 21:49:58: Checking if notebook is trusted
Info 2021-05-10 21:49:58: Check if Notebook is Trusted, Class name = p, completed in 15ms, has a truthy return value, Return Value: true
Info 2021-05-10 21:49:58: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: KernelProvider switched kernel to id = .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit}
Info 2021-05-10 21:49:58: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: initialize CommonMessageCoordinator
Info 2021-05-10 21:49:58: Attempting to start a server because of preload conditions ...
Info 2021-05-10 21:49:58: findPreferredKernel score for Python 2.7.17 64-bit is 103
Info 2021-05-10 21:49:58: findPreferredKernel score for Python 2.7.17 64-bit is 3
Info 2021-05-10 21:49:58: Find kernel spec, Class name = D, completed in 25ms, has a truthy return value, Arg 1: Uri:/home/ubu/test/Untitled.ipynb, Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"name":"python","version":""}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit"}
Info 2021-05-10 21:49:58: PreferredConnection: .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: TargetController found ID: .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:49:58: Created and initailized CommonMessageCoordinator
Info 2021-05-10 21:49:58: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: �[32mPosting message to Notebook UI
Info 2021-05-10 21:49:58: Switch kernel did not change kernel.
Info 2021-05-10 21:49:58: Cached data exists getEnvironmentVariables,
Info 2021-05-10 21:49:58: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list

/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:49:58: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-10 21:50:01: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-10 21:50:01: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:50:03: Execute Cells request 1 0
Info 2021-05-10 21:50:03: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:03: Starting Notebook in kernel.ts id = .python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit
Info 2021-05-10 21:50:03: Cell Index:0, state:undefined, exec: 4. User queued cell for execution
Info 2021-05-10 21:50:03: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:03: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:03: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:03: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python3.Python 2.7.17 64-bit"}
Info 2021-05-10 21:50:03: Starting raw kernel Python 2.7.17 64-bit
Info 2021-05-10 21:50:03: installMissingDependencies /usr/bin/python3
Info 2021-05-10 21:50:03: Cached data exists getEnvironmentVariables,
Info 2021-05-10 21:50:03: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:50:03: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:50:04: Install Missing Dependencies, Class name = y, completed in 715ms, has a falsy return value, Return Value: undefined
Info 2021-05-10 21:50:04: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-10 21:50:04: Launching kernel daemon for Python 2.7.17 64-bit # /usr/bin/python3
Info 2021-05-10 21:50:04: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-10 21:50:04: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:04: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-10 21:50:04: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:50:04: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Execute rpc method exec_module in DS Daemon
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Execute rpc method exec_module from /usr/bin/python3
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"400863ba-acf6-470e-bf5c-0acd921994de"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-808700C5RzlKXoDk.json']
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"400863ba-acf6-470e-bf5c-0acd921994de"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-808700C5RzlKXoDk.json']
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"400863ba-acf6-470e-bf5c-0acd921994de"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-808700C5RzlKXoDk.json']
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-10 21:50:04: Python Daemon (pid: 8267): Kernel launched, with PID 8269
Warn 2021-05-10 21:50:04: Python Daemon (pid: 8267): Waiting for Kernel to die 8269
Info 2021-05-10 21:50:04: Launching kernel daemon, Class name = f, completed in 209ms, has a truthy return value, Arg 1: Uri:/home/ubu/test/Untitled.ipynb, Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme="hmac-sha256"","--Session.key=b"400863ba-acf6-470e-bf5c-0acd921994de"","--shell=9002","--transport="tcp"","--iopub=9004","--f=/tmp/tmp-808700C5RzlKXoDk.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value:
Info 2021-05-10 21:50:04: Launching kernel in kernelProcess.ts, Class name = b, completed in 209ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":8267},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":8267,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-10 21:50:04: Raw session started and connected
Started kernel Python 2.7.17 64-bit
Info 2021-05-10 21:50:04: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-10 21:50:04: UpdateWorkingDirectoryAndPath
Info 2021-05-10 21:50:04: Kernel switching to busy
Info 2021-05-10 21:50:05: Kernel switching to idle
Info 2021-05-10 21:50:05: Kernel switching to busy
Info 2021-05-10 21:50:05: Kernel switching to idle
Info 2021-05-10 21:50:05: Starting raw kernel Python 2.7.17 64-bit
Info 2021-05-10 21:50:05: installMissingDependencies /usr/bin/python3
Info 2021-05-10 21:50:05: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:05: Finished connecting 6ad37d71-a0ad-4295-b6f3-6ac264447bba
Info 2021-05-10 21:50:05: Updating preferred kernel for remote notebook f65ada9e-effd-438d-bd1b-a551aa8c5d5a
Info 2021-05-10 21:50:05: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is f65ada9e-effd-438d-bd1b-a551aa8c5d5a
Info 2021-05-10 21:50:05: UpdateWorkingDirectoryAndPath
Info 2021-05-10 21:50:05: IPyWidgetScriptSource.initialize
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Registering commtarget jupyter.widget
Info 2021-05-10 21:50:05: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-10 21:50:05: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:50:05: IPyWidgetMessageDispatcher.initialize
Info 2021-05-10 21:50:05: Cached data exists getEnvironmentVariables,
Info 2021-05-10 21:50:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:50:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-10 21:50:05: changeDirectoryIfPossible
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Kernel switching to busy
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Kernel switching to idle
Info 2021-05-10 21:50:05: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:50:05: Waiting for idle on (kernel): f65ada9e-effd-438d-bd1b-a551aa8c5d5a -> idle
Info 2021-05-10 21:50:05: Finished waiting for idle on (kernel): f65ada9e-effd-438d-bd1b-a551aa8c5d5a -> idle
Info 2021-05-10 21:50:05: Hooked up kernel restart handler
Info 2021-05-10 21:50:05: Cell Index:0, state:2, exec: undefined. Ready to execute
Info 2021-05-10 21:50:05: Cell Index:0, state:2, exec: undefined. Before Execute individual cell
Info 2021-05-10 21:50:05: Cell Index:0, state:2, exec: undefined. Start execution
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: undefined. Send code for execution
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-10 21:50:05: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:05: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: undefined. Update output
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:05: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Kernel switching to idle
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Jupyter execution completed
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Completed successfully
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Completed successfully & resolving
Info 2021-05-10 21:50:05: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. After Execute individual cell 3
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Executed successfully in executeCell
Info 2021-05-10 21:50:05: Cell Index:0, state:3, exec: 1. Execution disposed
Info 2021-05-10 21:50:06: Install Missing Dependencies, Class name = y, completed in 1000ms, has a falsy return value, Return Value: undefined
Info 2021-05-10 21:50:06: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-10 21:50:06: Launching kernel daemon for Python 2.7.17 64-bit # /usr/bin/python3
Info 2021-05-10 21:50:06: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-10 21:50:06: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:06: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-10 21:50:06: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:50:06: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
/usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Execute rpc method exec_module in DS Daemon
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Execute rpc method exec_module from /usr/bin/python3
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Exec module in DS Kernel Launcher Daemon ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"3202644e-3dd3-4d79-a455-8ce9fd7d7c75"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087a62LQP3usXbO.json']
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Exec in DS Kernel Launcher Daemon (observable) ipykernel_launcher with args ['--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"3202644e-3dd3-4d79-a455-8ce9fd7d7c75"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087a62LQP3usXbO.json']
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '-m', 'ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"3202644e-3dd3-4d79-a455-8ce9fd7d7c75"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-8087a62LQP3usXbO.json']
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-10 21:50:06: Python Daemon (pid: 8284): Kernel launched, with PID 8286
Warn 2021-05-10 21:50:06: Python Daemon (pid: 8284): Waiting for Kernel to die 8286
Info 2021-05-10 21:50:06: Launching kernel daemon, Class name = f, completed in 170ms, has a truthy return value, Arg 1: Uri:/home/ubu/test/Untitled.ipynb, Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python","name":"python2717jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme="hmac-sha256"","--Session.key=b"3202644e-3dd3-4d79-a455-8ce9fd7d7c75"","--shell=9007","--transport="tcp"","--iopub=9009","--f=/tmp/tmp-8087a62LQP3usXbO.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 2.7.17 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value:
Info 2021-05-10 21:50:06: Launching kernel in kernelProcess.ts, Class name = b, completed in 171ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":8284},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.828932339/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":8284,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-10 21:50:06: Trusting notebook...
Info 2021-05-10 21:50:08: Execute Cells request 1 1
Info 2021-05-10 21:50:08: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:08: Cell Index:1, state:undefined, exec: 5. User queued cell for execution
Info 2021-05-10 21:50:08: Cell Index:1, state:undefined, exec: 5. Ready to execute
Info 2021-05-10 21:50:08: Cell Index:1, state:undefined, exec: 5. Before Execute individual cell
Info 2021-05-10 21:50:08: Cell Index:1, state:undefined, exec: 5. Start execution
Info 2021-05-10 21:50:08: Cell Index:1, state:3, exec: undefined. Send code for execution
Info 2021-05-10 21:50:08: Cell Index:1, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:08: Cell Index:1, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:08: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:50:08: Cell Index:1, state:3, exec: undefined. Update output
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:08: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:08: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:09: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Kernel switching to idle
Info 2021-05-10 21:50:09: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Jupyter execution completed
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Completed successfully
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Completed successfully & resolving
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. After Execute individual cell 3
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Executed successfully in executeCell
Info 2021-05-10 21:50:09: Cell Index:1, state:3, exec: 2. Execution disposed
Info 2021-05-10 21:50:10: Trusting notebook...
Info 2021-05-10 21:50:10: Execute Cells request 1 2
Info 2021-05-10 21:50:10: Execute Cell 2 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:10: Cell Index:2, state:undefined, exec: undefined. User queued cell for execution
Info 2021-05-10 21:50:10: Cell Index:2, state:undefined, exec: undefined. Ready to execute
Info 2021-05-10 21:50:10: Cell Index:2, state:undefined, exec: undefined. Before Execute individual cell
Info 2021-05-10 21:50:10: Cell Index:2, state:undefined, exec: undefined. Start execution
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: undefined. Send code for execution
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: undefined. Update output
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:10: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:10: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Kernel switching to idle
Info 2021-05-10 21:50:10: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Jupyter execution completed
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Completed successfully
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Completed successfully & resolving
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. After Execute individual cell 3
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Executed successfully in executeCell
Info 2021-05-10 21:50:10: Cell Index:2, state:3, exec: 3. Execution disposed
Info 2021-05-10 21:50:11: Trusting notebook...
Info 2021-05-10 21:50:17: Execute Cells request 1 2
Info 2021-05-10 21:50:17: Execute Cell 2 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:17: Cell Index:2, state:1, exec: 3. User queued cell for execution
Info 2021-05-10 21:50:17: Cell Index:2, state:1, exec: 3. Ready to execute
Info 2021-05-10 21:50:17: Cell Index:2, state:1, exec: 3. Before Execute individual cell
Info 2021-05-10 21:50:17: Cell Index:2, state:1, exec: 3. Start execution
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: undefined. Send code for execution
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: undefined. Update output
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-10 21:50:17: �[32mPosting message to Notebook UI
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-10 21:50:17: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Kernel switching to idle
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Jupyter execution completed
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Completed successfully
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Completed successfully & resolving
Info 2021-05-10 21:50:17: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. After Execute individual cell 3
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Executed successfully in executeCell
Info 2021-05-10 21:50:17: Cell Index:2, state:3, exec: 4. Execution disposed
Info 2021-05-10 21:50:18: Trusting notebook...
Info 2021-05-10 21:50:23: Trusting notebook...

Logs of the Python extension (log level is debug)
User belongs to experiment group 'CollectLSRequestTiming - control'
User belongs to experiment group 'CollectNodeLSRequestTiming - experiment'
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Create file systemwatcher with pattern */python
Info 2021-05-10 21:49:17: Create file systemwatcher with pattern */*/python
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 43ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 43ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 44ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:17: Register Interpreter Watcher, Class name = f, completed in 43ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 44ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 42ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 22ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Build the workspace interpreter watcher, Class name = d, completed in 46ms, has a truthy return value, Arg 1: , Return Value: 
Info 2021-05-10 21:49:17: Create file systemwatcher with pattern */python
Info 2021-05-10 21:49:17: Create file systemwatcher with pattern */*/python
Info 2021-05-10 21:49:17: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:17: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:17: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 15ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Register Interpreter Watcher, Class name = f, completed in 38ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 39ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 38ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 37ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Get Interpreters in CacheableLocatorService, Class name = m, completed in 50ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:17: Build the workspace interpreter watcher, Class name = d, completed in 52ms, has a truthy return value, Arg 1: undefined, Return Value: 
Info 2021-05-10 21:49:18: Get Interpreters, Class name = _, completed in 187ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:18: Get Interpreters, Class name = _, completed in 134ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:18: Get Interpreters, Class name = _, completed in 120ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:18: Get Interpreters, Class name = _, completed in 119ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","cachedEntry":true},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true}]
Info 2021-05-10 21:49:18: > conda --version
> conda --version
Info 2021-05-10 21:49:18: > pyenv root
> pyenv root
Info 2021-05-10 21:49:18: > python3.7 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python3.7 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: > python3.6 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python3.6 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: > python3 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python3 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: > python2 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python2 ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:18: "pyenv root" failed (Error: spawn pyenv ENOENT)
Info 2021-05-10 21:49:18: Detection of Python Interpreter for Command python3.7 and args  failed
Info 2021-05-10 21:49:18: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:18: > conda info --json
> conda info --json
Info 2021-05-10 21:49:19: Interpreters returned by CondaEnvFileService are of count 0
Info 2021-05-10 21:49:19: Interpreters returned by CondaEnvFileService are []
Info 2021-05-10 21:49:19: Interpreters returned by CondaEnvService are of count 0
Info 2021-05-10 21:49:19: Interpreters returned by CondaEnvService are []
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:19: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:19: Rule = settings, result = runNextRule
Info 2021-05-10 21:49:19: Executing next rule from settings
Info 2021-05-10 21:49:19: Display locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:19: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:19: Cached data exists getEnvironmentVariables, /home/ubu/test
Info 2021-05-10 21:49:19: Interpreters returned by KnownPathsService are of count 10
Info 2021-05-10 21:49:19: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"}]
Info 2021-05-10 21:49:19: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:19: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:19: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:19: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:19: Interpreters returned by CurrentPathService are of count 5
Info 2021-05-10 21:49:19: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:19: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:19: > python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
> python ~/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/pythonFiles/pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
Info 2021-05-10 21:49:19: Interpreters returned by VirtualEnvService are of count 0
Info 2021-05-10 21:49:19: Interpreters returned by VirtualEnvService are []
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:19: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:19: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:19: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:19: getActivatedEnvironmentVariables, Class name = C, completed in 326ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","displayName":"Python 2.7.17 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:19: getActivatedEnvironmentVariables, Class name = C, completed in 326ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","displayName":"Python 2.7.17 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:19: getActivatedEnvironmentVariables, Class name = C, completed in 326ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","displayName":"Python 2.7.17 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 820ms, has a truthy return value, Arg 1: , Arg 2: {"ignoreCache":true}, Return Value: []
Info 2021-05-10 21:49:20: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-05-10 21:49:20: Rule = workspaceEnvs, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from workspaceEnvs
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
Info 2021-05-10 21:49:20: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:20: getActivatedEnvironmentVariables, Class name = C, completed in 541ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown","displayName":"Python 2.7.17 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:20: Current value for rule system is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:20: Current value for rule currentPath is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: Current value for rule windowsRegistry is nothing
Info 2021-05-10 21:49:20: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: setGlobalInterpreter, Class name = f, completed in 118ms, has a truthy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: , Return Value: true
Info 2021-05-10 21:49:20: Rule = cachedInterpreters, result = exit
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 167ms, has a falsy return value, Arg 1: , Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 987ms, has a falsy return value, Arg 1: , Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 989ms, has a falsy return value, Arg 1: , Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: Rule = windowsRegistry, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from windowsRegistry
Info 2021-05-10 21:49:20: Rule = settings, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from settings
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, /home/ubu/test
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, /home/ubu/test
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, /home/ubu/test
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 3ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 3ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: Display locator refreshing progress, Class name = g, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:20: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:20: Build the workspace interpreter watcher, Class name = d, completed in 0ms, has a truthy return value, Arg 1: , Return Value: 
Info 2021-05-10 21:49:20: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:20: getActivatedEnvironmentVariables, Class name = C, completed in 209ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Error 2021-05-10 21:49:20: Failed to check if file needs to be fixed [EntryNotFound (FileSystemError): Unable to read file '/home/ubu/test/.vscode/settings.json' (Error: Unable to resolve non-existing file '/home/ubu/test/.vscode/settings.json')
	at _handleError (/usr/share/code-insiders/resources/app/out/vs/workbench/services/extensions/node/extensionHostProcess.js:87:156604)
	at processTicksAndRejections (internal/process/task_queues.js:93:5)
	at async y.readText (/home/ubu/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/out/client/extension.js:9:339523)
	at async p.doesFileNeedToBeFixed (/home/ubu/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/out/client/extension.js:59:577126)
	at async /home/ubu/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/out/client/extension.js:59:576253
	at async Promise.all (index 1)
	at async p.getFilesToBeFixed (/home/ubu/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/out/client/extension.js:59:576199)
	at async p.updateTestSettings (/home/ubu/.vscode-insiders/extensions/ms-python.python-2021.4.765268190/out/client/extension.js:59:575826)] {
  code: 'FileNotFound'
}
Info 2021-05-10 21:49:20: Current value for rule system is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:20: Current value for rule currentPath is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: Current value for rule windowsRegistry is nothing
Info 2021-05-10 21:49:20: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 1ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 15ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:20: Selected Interpreter from currentPath, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 15ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 16ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 16ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 15ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"}]
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 15ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:20: Get Interpreters, Class name = _, completed in 23ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}]
Starting Jedi Python language engine.
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, /home/ubu/test
Python interpreter path: /usr/bin/python3
Info 2021-05-10 21:49:20: Selected Interpreter from system, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:20: setGlobalInterpreter, Class name = f, completed in 248ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:20: setGlobalInterpreter, Class name = f, completed in 177ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:20: setGlobalInterpreter, Class name = f, completed in 90ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:20: Rule = cachedInterpreters, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from cachedInterpreters
Info 2021-05-10 21:49:20: Rule = currentPath, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from currentPath
Info 2021-05-10 21:49:20: Rule = system, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from system
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 312ms, has a truthy return value, Arg 1: , Arg 2: {"ignoreCache":true}, Return Value: []
Info 2021-05-10 21:49:20: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 315ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 315ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 315ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: Rule = workspaceEnvs, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from workspaceEnvs
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
Info 2021-05-10 21:49:20: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 339ms, has a falsy return value, Arg 1: , Return Value: undefined
Info 2021-05-10 21:49:20: Rule = settings, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from settings
Info 2021-05-10 21:49:20: Display locator refreshing progress, Class name = g, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:20: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:20: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 262ms, has a truthy return value, Arg 1: , Arg 2: {"ignoreCache":true}, Return Value: []
Info 2021-05-10 21:49:20: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-05-10 21:49:20: Rule = workspaceEnvs, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from workspaceEnvs
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
Info 2021-05-10 21:49:20: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Current value for rule system is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:20: Current value for rule currentPath is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: Current value for rule windowsRegistry is nothing
Info 2021-05-10 21:49:20: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:20: setGlobalInterpreter, Class name = f, completed in 17ms, has a truthy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: , Return Value: true
Info 2021-05-10 21:49:20: Rule = cachedInterpreters, result = exit
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 26ms, has a falsy return value, Arg 1: undefined, Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 289ms, has a falsy return value, Arg 1: undefined, Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 289ms, has a falsy return value, Arg 1: undefined, Arg 2: , Return Value: undefined
Info 2021-05-10 21:49:20: Rule = windowsRegistry, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from windowsRegistry
Info 2021-05-10 21:49:20: Rule = settings, result = runNextRule
Info 2021-05-10 21:49:20: Executing next rule from settings
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 7ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:20: autoSelectInterpreter, Class name = f, completed in 7ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:20: Display locator refreshing progress, Class name = g, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:20: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
Info 2021-05-10 21:49:20: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
Info 2021-05-10 21:49:20: [object Object]. Shell identified as undefined 
Info 2021-05-10 21:49:20: Shell path '/bin/bash'
Info 2021-05-10 21:49:20: Shell path identified as shell 'bash'
Info 2021-05-10 21:49:20: Terminal shell path '/bin/bash' identified as shell 'bash'
Info 2021-05-10 21:49:20: [object Object]. Shell identified as bash 
Info 2021-05-10 21:49:20: Shell identified as 'bash'
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:20: Cached data exists getEnvironmentVariables, 
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 0ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Cached data exists KeyPrefix=Cache_Method_Output_r.getCondaInfo-Args=
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 9ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 9ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 9ms, has a truthy return value, Arg 1: , Return Value: []
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 10ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"}]
Info 2021-05-10 21:49:20: Get Interpreters in CacheableLocatorService, Class name = m, completed in 10ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:20: Get Interpreters, Class name = _, completed in 10ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}]
Info 2021-05-10 21:49:20: > conda --version
> conda --version
Info 2021-05-10 21:49:21: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:21: Current value for rule system is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:21: Current value for rule currentPath is {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:21: Current value for rule windowsRegistry is nothing
Info 2021-05-10 21:49:21: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 16ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:21: Selected Interpreter from currentPath, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 13ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 13ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 14ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 14ms, has a truthy return value, Arg 1: undefined, Return Value: []
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 14ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2.7","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"5158eb3fa2d4f915d9311778d288a81c1a155d2b661d48aaf363c62e9b2777c9ab9863c9c5380cbf47ff73198014887534b9ebafaa0fccc4b21b43ae92a502d4","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"}]
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 14ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python3.6","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"3af261ab11f50760169da8441530778f2807d0cbcfec423a3951918e01531b9fd5acaf21c9541901be259f1d26d3b1d7382d7eabeccbbf822399464febbc8df3","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python2","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"}]
Info 2021-05-10 21:49:21: Get Interpreters, Class name = _, completed in 35ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: [{"architecture":3,"path":"/usr/bin/python","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"2.7.17","major":2,"minor":7,"patch":17,"prerelease":[],"build":[],"version":"2.7.17"},"sysVersion":"2.7.17 (default, Feb 27 2021, 15:10:58) \n[GCC 7.5.0]","sysPrefix":"/usr","fileHash":"a297cb94d2474912fab599f02428d4d1993b872a018bb98c67c54fc690875582f4e62c836eac1d41e06683912128008c53e41b256c485bcbb1ed506831592103","envType":"Unknown"},{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}]
Info 2021-05-10 21:49:21: Selected Interpreter from system, {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}
Info 2021-05-10 21:49:21: Current value for rule workspaceEnvs is nothing
Info 2021-05-10 21:49:21: setGlobalInterpreter, Class name = f, completed in 178ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:21: setGlobalInterpreter, Class name = f, completed in 162ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:21: setGlobalInterpreter, Class name = f, completed in 142ms, has a falsy return value, Arg 1: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 2: undefined, Return Value: false
Info 2021-05-10 21:49:21: Rule = cachedInterpreters, result = runNextRule
Info 2021-05-10 21:49:21: Executing next rule from cachedInterpreters
Info 2021-05-10 21:49:21: Rule = currentPath, result = runNextRule
Info 2021-05-10 21:49:21: Executing next rule from currentPath
Info 2021-05-10 21:49:21: Rule = system, result = runNextRule
Info 2021-05-10 21:49:21: Executing next rule from system
Info 2021-05-10 21:49:21: autoSelectInterpreter, Class name = f, completed in 935ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:21: autoSelectInterpreter, Class name = f, completed in 936ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:21: autoSelectInterpreter, Class name = f, completed in 936ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:21: Interpreters returned by WorkspaceVirtualEnvService are of count 0
Info 2021-05-10 21:49:21: Interpreters returned by WorkspaceVirtualEnvService are []
Info 2021-05-10 21:49:21: Get Interpreters in CacheableLocatorService, Class name = m, completed in 1049ms, has a truthy return value, Arg 1: , Arg 2: {"ignoreCache":true}, Return Value: []
Info 2021-05-10 21:49:21: Selected Interpreter from workspaceEnvs, Nothing Selected
Info 2021-05-10 21:49:21: Rule = workspaceEnvs, result = runNextRule
Info 2021-05-10 21:49:21: Executing next rule from workspaceEnvs
Info 2021-05-10 21:49:21: Checking whether locactors have completed locating, Class name = p, completed in 1ms, has a truthy return value, , Return Value: true
Info 2021-05-10 21:49:21: Hide locator refreshing progress, Class name = g, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:21: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
Info 2021-05-10 21:49:21: autoSelectInterpreter, Class name = f, completed in 1058ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
Info 2021-05-10 21:49:28: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:28: getActivatedEnvironmentVariables, Class name = C, completed in 24ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:29: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:29: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:29: getActivatedEnvironmentVariables, Class name = C, completed in 12ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:29: getActivatedEnvironmentVariables, Class name = C, completed in 12ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:30: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:30: getActivatedEnvironmentVariables, Class name = C, completed in 39ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:31: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:31: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:31: getActivatedEnvironmentVariables, Class name = C, completed in 8ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:31: getActivatedEnvironmentVariables, Class name = C, completed in 7ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:43: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:49:58: Activation Commands received undefined for shell bash
Info 2021-05-10 21:49:58: getActivatedEnvironmentVariables, Class name = C, completed in 174ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:49:59: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 21:50:03: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:03: getActivatedEnvironmentVariables, Class name = C, completed in 44ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:50:04: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:04: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:04: getActivatedEnvironmentVariables, Class name = C, completed in 8ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:50:04: getActivatedEnvironmentVariables, Class name = C, completed in 8ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:50:05: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:05: getActivatedEnvironmentVariables, Class name = C, completed in 61ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:50:06: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:06: Activation Commands received undefined for shell bash
Info 2021-05-10 21:50:06: getActivatedEnvironmentVariables, Class name = C, completed in 9ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:50:06: getActivatedEnvironmentVariables, Class name = C, completed in 9ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","displayName":"Python 3.6.9 64-bit"}, Arg 3: false
Info 2021-05-10 21:59:36: Cached data exists getEnvironmentVariables, extension-output-#3
Info 2021-05-10 22:00:29: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 22:00:42: Cached data exists getEnvironmentVariables, extension-output-#5
Info 2021-05-10 22:07:04: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-10 22:07:05: Cached data exists getEnvironmentVariables, extension-output-#3
Info 2021-05-10 22:15:47: Cached data exists getEnvironmentVariables, extension-output-#3
Info 2021-05-10 22:15:51: Cached data exists getEnvironmentVariables, extension-output-#5

[Although I put the logs into a <pre>-environment, some parts of Jupyter logs seem to be formatted by the Markdown renderer. It looks like the > caused at some position a vertical bar on the left side.]

@DonJayamanne
Copy link
Contributor

@ma137
Thanks for the logs, I believe we have resolved this issue.
Please could you install this build of the VSIX and let us know if this fixes the issue you are experiencing

https://github.com/microsoft/vscode-jupyter/suites/2703856947/artifacts/59616933

Again, thanks for taking the time to validate the fix.

@allefeld
Copy link

Not sure whether you guys did something or this is just random, but I just noticed that my problem doesn't seem to happen anymore. At least when I just now created a new notebook, the 3.8.8 kernel was automatically selected. As far as I can tell, the only thing changed is that the Python extension was updated to 2021.5.0.

@ma137
Copy link
Author

ma137 commented May 11, 2021

@DonJayamanne I installed the VSIX you provided with the VS Code Insiders build from today. It works: It does not want the Python 2.7 ipykernel to be installed and it does display the correct Python version in the blue bar at the lower end of the window. The only problem which remains is that running cells only works when opening the ipynb file for the second time (more times work, too).

Here are the version numbers:

  • VS Code Insiders: 1.57.0-insider ( commit: 988902e0bc37c7acba82e2ddde49592d8cb11666 )
  • Jupyter extension: v2021.6.829402128
  • Python extension: v2021.5.829140558

I also tested this with the newest version of the Jupyter extension available directly inside VS Code Insiders. It behaves exactly as VSIX file you provided (no problem with ipykernel; correct Python version is displayed; not working when opening for the first time).

The version numbers are:

  • VS Code Insiders: as above
  • Jupyter extension: v2021.6.832913620
  • Python extension: as above

Jupyter logs for this problem

Opening the notebook the first time (running cells does not work)
User belongs to experiment group 'pythonJediLSP'
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'jupyterEnhancedDataViewer'
User belongs to experiment group 'NativeNotebookEditor'
Info 2021-05-11 23:36:15: ZMQ install verified.
Info 2021-05-11 23:36:15: Attempting to start a server because of preload conditions ...
Info 2021-05-11 23:36:16: Found existing keyfile at /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-11 23:36:17: Checking if notebook is trusted
Info 2021-05-11 23:36:17: Check if Notebook is Trusted, Class name = p, completed in 77ms, has a truthy return value, Return Value: true
Info 2021-05-11 23:36:17: Search all interpreters /usr/bin/python, /usr/bin/python3
Info 2021-05-11 23:36:18: Attempting to start a server because of preload conditions ...
Info 2021-05-11 23:36:18: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python3
Info 2021-05-11 23:36:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-11 23:36:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-11 23:36:19: Kernel python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6 matches Python 3.6.9 64-bit based on path in argv.
Info 2021-05-11 23:36:19: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:19: findPreferredKernel score for Python3, Python 3.6.9 64-bit is 121
Info 2021-05-11 23:36:19: findPreferredKernel score for Python 3.6.9 64-bit is 121
Info 2021-05-11 23:36:19: findPreferredKernel score for speclanguage=python, Python 2.7.17 64-bit is -1
Info 2021-05-11 23:36:19: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-11 23:36:19: findKernel found Python 3.6.9 64-bit
Info 2021-05-11 23:36:19: Find kernel spec, Class name = D, completed in 885ms, has a truthy return value, Arg 1: , Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.9"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-11 23:36:19: PreferredConnection: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:19: TargetController found ID: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:19: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:19: KernelProvider switched kernel to id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3}
Info 2021-05-11 23:36:20: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:20: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:20: initialize CommonMessageCoordinator
Info 2021-05-11 23:36:20: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:20: Created and initailized CommonMessageCoordinator
Info 2021-05-11 23:36:20: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:20: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:21: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:21: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-11 23:36:21: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-11 23:36:22: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:22: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:36:22: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:22: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:22: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
Info 2021-05-11 23:36:22: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
Info 2021-05-11 23:36:23: Execute Cells request 1 0
Info 2021-05-11 23:36:23: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:23: Starting Notebook in kernel.ts id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-11 23:36:23: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:23: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:23: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:23: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-11 23:36:23: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-11 23:36:23: installMissingDependencies /usr/bin/python3
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Kernel launched, with PID 7616
Warn 2021-05-11 23:36:23: Python Daemon (pid: 7610): Waiting for Kernel to die 7616
Info 2021-05-11 23:36:23: Python Daemon (pid: 7610): Kernel launched, with PID as a daemon 7616
Info 2021-05-11 23:36:24: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:24: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:24: Creating daemon pool for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:24: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-11 23:36:26: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-11 23:36:27: Install Missing Dependencies, Class name = y, completed in 4456ms, has a falsy return value, Return Value: undefined
Info 2021-05-11 23:36:27: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-11 23:36:27: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-11 23:36:27: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-11 23:36:27: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:27: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:27: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:27: Python Daemon (pid: 7610): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-11 23:36:27: Python Daemon (pid: 7610): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-11 23:36:27: Python Daemon (pid: 7610): Start pre-warmed Kernel in DS Kernel Launcher Daemon 7616 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"21c9bad0-226e-4bc1-bf98-c3cb60a4061e"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-7485ZCjtmLN6TYjI.json']
Info 2021-05-11 23:36:27: Launching kernel daemon, Class name = f, completed in 171ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"21c9bad0-226e-4bc1-bf98-c3cb60a4061e\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-7485ZCjtmLN6TYjI.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-11 23:36:27: Launching kernel in kernelProcess.ts, Class name = b, completed in 172ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":7610},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":7610,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-11 23:36:27: Raw session started and connected
Started kernel Python 3.6.9 64-bit
Info 2021-05-11 23:36:27: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-11 23:36:27: UpdateWorkingDirectoryAndPath
Info 2021-05-11 23:36:28: Kernel switching to busy
Info 2021-05-11 23:36:28: Kernel switching to idle
Info 2021-05-11 23:36:28: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-11 23:36:28: installMissingDependencies /usr/bin/python3
Info 2021-05-11 23:36:28: Kernel switching to busy
Info 2021-05-11 23:36:28: Kernel switching to idle
Info 2021-05-11 23:36:28: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:28: Finished connecting 18641263-cc41-4e2e-9aa7-04b94f495e57
Info 2021-05-11 23:36:28: Updating preferred kernel for remote notebook cc2c95c0-e62a-40af-973b-bec4485f9f59
Info 2021-05-11 23:36:28: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is cc2c95c0-e62a-40af-973b-bec4485f9f59
Info 2021-05-11 23:36:28: UpdateWorkingDirectoryAndPath
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: Registering commtarget jupyter.widget
Info 2021-05-11 23:36:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:28: IPyWidgetScriptSource.initialize
Info 2021-05-11 23:36:28: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:28: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:28: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:28: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:28: changeDirectoryIfPossible
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: Kernel switching to busy
Info 2021-05-11 23:36:28: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: Kernel switching to idle
Info 2021-05-11 23:36:28: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-11 23:36:28: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:36:28: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:28: Waiting for idle on (kernel): cc2c95c0-e62a-40af-973b-bec4485f9f59 -> idle
Info 2021-05-11 23:36:28: Finished waiting for idle on (kernel): cc2c95c0-e62a-40af-973b-bec4485f9f59 -> idle
Info 2021-05-11 23:36:28: Hooked up kernel restart handler
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-11 23:36:30: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-11 23:36:30: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:36:30: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:30: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:36:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:30: Install Missing Dependencies, Class name = y, completed in 2749ms, has a falsy return value, Return Value: undefined
Info 2021-05-11 23:36:30: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-11 23:36:30: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-11 23:36:30: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-11 23:36:30: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:36:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:30: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Kernel launched, with PID 7653
Warn 2021-05-11 23:36:31: Python Daemon (pid: 7650): Waiting for Kernel to die 7653
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Kernel launched, with PID as a daemon 7653
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-11 23:36:31: Python Daemon (pid: 7650): Start pre-warmed Kernel in DS Kernel Launcher Daemon 7653 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"6e562ceb-73bb-43b8-973e-5b2bd0bbbf6a"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-74859HgmYHQQ1Cpy.json']
Info 2021-05-11 23:36:31: Launching kernel daemon, Class name = f, completed in 634ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"6e562ceb-73bb-43b8-973e-5b2bd0bbbf6a\"","--shell=9007","--transport=\"tcp\"","--iopub=9009","--f=/tmp/tmp-74859HgmYHQQ1Cpy.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-11 23:36:31: Launching kernel in kernelProcess.ts, Class name = b, completed in 684ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":7650},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":7650,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-11 23:36:32: Execute Cells request 1 0
Info 2021-05-11 23:36:32: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:32: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:32: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:36:32: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:32: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Kernel launched, with PID 7669
Warn 2021-05-11 23:36:32: Python Daemon (pid: 7667): Waiting for Kernel to die 7669
Info 2021-05-11 23:36:32: Python Daemon (pid: 7667): Kernel launched, with PID as a daemon 7669
Info 2021-05-11 23:36:35: Execute Cells request 1 0
Info 2021-05-11 23:36:35: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:37: Execute Cells request 1 0
Info 2021-05-11 23:36:37: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:39: Execute Cells request 1 1
Info 2021-05-11 23:36:39: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:36:49: Execute Cells request 1 1
Info 2021-05-11 23:36:49: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Closing the notebook
Info 2021-05-11 23:39:07: Kernel got disposed as a result of notebook.onDisposed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:39:07: Kernel got disposed, hence there is no longer a kernel associated with file:///home/ubu/test/Untitled.ipynb file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:39:07: Shutting down session file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:39:07: Shutdown session - current session
Info 2021-05-11 23:39:07: shutdownSession cc2c95c0-e62a-40af-973b-bec4485f9f59, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - start
Info 2021-05-11 23:39:07: Session can be shutdown .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: kill daemon
Info 2021-05-11 23:39:07: Notebook Closed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: Cancel pending cells
Info 2021-05-11 23:39:07: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 7610}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 7610}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 7610}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 7616", "pid": 7610}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 3, "result": null}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "WARNING", "msg": "Kernel has exited with exit code -9, ", "pid": 7610}}Content-Length: 86
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "kernel_died", "params": {"exit_code": -9, "reason": ""}}
Info 2021-05-11 23:39:07: Python Daemon (pid: 7610): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-11 23:39:07: Python Daemon (pid: 7610): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-11 23:39:07: Python Daemon (pid: 7610): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:39:07: Python Daemon (pid: 7610): Kill kernel in DS Kernel Launcher Daemon, pid 7616
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: shutdownSession cc2c95c0-e62a-40af-973b-bec4485f9f59, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - shutdown complete
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: Shutdown session - get restart session
Info 2021-05-11 23:39:07: Shutdown session - shutdown restart session
Info 2021-05-11 23:39:07: shutdownSession b8fdbbe3-aded-420a-8468-08976677704c, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - start
Info 2021-05-11 23:39:07: Session can be shutdown .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: kill daemon
Info 2021-05-11 23:39:07: KernelProcess Exit Exit - undefined
Warn 2021-05-11 23:39:07: Python Daemon (pid: 7610): Kernel has exited with exit code -9,
Info 2021-05-11 23:39:07: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 7650}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 7650}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 7650}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 7653", "pid": 7650}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 3, "result": null}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "WARNING", "msg": "Kernel has exited with exit code -9, ", "pid": 7650}}Content-Length: 86
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "kernel_died", "params": {"exit_code": -9, "reason": ""}}
Info 2021-05-11 23:39:07: Python Daemon (pid: 7650): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-11 23:39:07: Python Daemon (pid: 7650): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-11 23:39:07: Python Daemon (pid: 7650): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:39:07: Python Daemon (pid: 7650): Kill kernel in DS Kernel Launcher Daemon, pid 7653
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: shutdownSession b8fdbbe3-aded-420a-8468-08976677704c, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - shutdown complete
Info 2021-05-11 23:39:07: Dispose Kernel process
Info 2021-05-11 23:39:07: Shutdown session -- complete
Info 2021-05-11 23:39:07: KernelProcess Exit Exit - undefined
Warn 2021-05-11 23:39:07: Python Daemon (pid: 7650): Kernel has exited with exit code -9,

Opening the notebook the second time (running cells does work)
Info 2021-05-11 23:40:40: Checking if notebook is trusted
Info 2021-05-11 23:40:40: Check if Notebook is Trusted, Class name = p, completed in 3ms, has a truthy return value, Return Value: true
Info 2021-05-11 23:40:40: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: KernelProvider switched kernel to id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3}
Info 2021-05-11 23:40:40: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: initialize CommonMessageCoordinator
Info 2021-05-11 23:40:40: Attempting to start a server because of preload conditions ...
Info 2021-05-11 23:40:40: findPreferredKernel score for Python3, Python 3.6.9 64-bit is 121
Info 2021-05-11 23:40:40: findPreferredKernel score for Python 3.6.9 64-bit is 121
Info 2021-05-11 23:40:40: findPreferredKernel score for speclanguage=python, Python 2.7.17 64-bit is -1
Info 2021-05-11 23:40:40: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-11 23:40:40: findKernel found Python 3.6.9 64-bit
Info 2021-05-11 23:40:40: Find kernel spec, Class name = D, completed in 38ms, has a truthy return value, Arg 1: , Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.9"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-11 23:40:40: PreferredConnection: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: TargetController found ID: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:40: Created and initailized CommonMessageCoordinator
Info 2021-05-11 23:40:40: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:40: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:40: Switch kernel did not change kernel.
Info 2021-05-11 23:40:40: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:40: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-11 23:40:40: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-11 23:40:41: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:44: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-11 23:40:44: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:45: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-11 23:40:45: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:49: Execute Cells request 1 0
Info 2021-05-11 23:40:49: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:49: Starting Notebook in kernel.ts id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-11 23:40:49: Cell Index:0, state:undefined, exec: 3. User queued cell for execution
Info 2021-05-11 23:40:49: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:49: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:49: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:49: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-11 23:40:49: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-11 23:40:49: installMissingDependencies /usr/bin/python3
Info 2021-05-11 23:40:49: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:49: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:49: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:50: Install Missing Dependencies, Class name = y, completed in 1171ms, has a falsy return value, Return Value: undefined
Info 2021-05-11 23:40:50: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-11 23:40:50: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-11 23:40:50: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-11 23:40:50: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:50: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:50: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:50: Python Daemon (pid: 7667): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-11 23:40:50: Python Daemon (pid: 7667): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-11 23:40:50: Python Daemon (pid: 7667): Start pre-warmed Kernel in DS Kernel Launcher Daemon 7669 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"74dcfa73-35d7-4fc3-93cc-13ae2523286b"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-7485v7uKSXfSimLC.json']
Info 2021-05-11 23:40:50: Launching kernel daemon, Class name = f, completed in 108ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"74dcfa73-35d7-4fc3-93cc-13ae2523286b\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-7485v7uKSXfSimLC.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-11 23:40:50: Launching kernel in kernelProcess.ts, Class name = b, completed in 143ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":7667},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":7667,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-11 23:40:50: Raw session started and connected
Started kernel Python 3.6.9 64-bit
Info 2021-05-11 23:40:50: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-11 23:40:50: UpdateWorkingDirectoryAndPath
Info 2021-05-11 23:40:51: Kernel switching to busy
Info 2021-05-11 23:40:51: Kernel switching to idle
Info 2021-05-11 23:40:51: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-11 23:40:51: installMissingDependencies /usr/bin/python3
Info 2021-05-11 23:40:51: Kernel switching to busy
Info 2021-05-11 23:40:51: Kernel switching to idle
Info 2021-05-11 23:40:51: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:51: Finished connecting 18641263-cc41-4e2e-9aa7-04b94f495e57
Info 2021-05-11 23:40:51: Updating preferred kernel for remote notebook e6feb744-91a9-4637-b533-8f782984d937
Info 2021-05-11 23:40:51: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is e6feb744-91a9-4637-b533-8f782984d937
Info 2021-05-11 23:40:51: UpdateWorkingDirectoryAndPath
Info 2021-05-11 23:40:51: IPyWidgetScriptSource.initialize
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: Registering commtarget jupyter.widget
Info 2021-05-11 23:40:51: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-11 23:40:51: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:51: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:51: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:51: IPyWidgetMessageDispatcher.initialize
Info 2021-05-11 23:40:51: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:51: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:51: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:51: changeDirectoryIfPossible
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: Kernel switching to busy
Info 2021-05-11 23:40:51: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: Kernel switching to idle
Info 2021-05-11 23:40:51: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-11 23:40:51: Waiting for idle on (kernel): e6feb744-91a9-4637-b533-8f782984d937 -> idle
Info 2021-05-11 23:40:51: Finished waiting for idle on (kernel): e6feb744-91a9-4637-b533-8f782984d937 -> idle
Info 2021-05-11 23:40:51: Hooked up kernel restart handler
Info 2021-05-11 23:40:51: Cell Index:0, state:2, exec: undefined. Ready to execute
Info 2021-05-11 23:40:51: Cell Index:0, state:2, exec: undefined. Before Execute individual cell
Info 2021-05-11 23:40:51: Cell Index:0, state:2, exec: undefined. Start execution
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: undefined. Send code for execution
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-11 23:40:51: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: undefined. Update output
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:51: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Kernel switching to idle
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Jupyter execution completed
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Completed successfully
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Completed successfully & resolving
Info 2021-05-11 23:40:51: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. After Execute individual cell 3
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Executed successfully in executeCell
Info 2021-05-11 23:40:51: Cell Index:0, state:3, exec: 1. Execution disposed
Info 2021-05-11 23:40:53: Trusting notebook...
Info 2021-05-11 23:40:53: Wrote trust for file:///home/ubu/test/Untitled.ipynb to /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsignatures/28bad536c96edafcfd63b738e8dc7ea48f462b8d4efcc6cca357e0042183f267
Info 2021-05-11 23:40:53: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:53: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:40:53: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:40:53: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:40:53: Install Missing Dependencies, Class name = y, completed in 2097ms, has a falsy return value, Return Value: undefined
Info 2021-05-11 23:40:53: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-11 23:40:53: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-11 23:40:53: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-11 23:40:53: Cached data exists getEnvironmentVariables, 
Info 2021-05-11 23:40:53: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:53: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Kernel launched, with PID 7735
Warn 2021-05-11 23:40:53: Python Daemon (pid: 7732): Waiting for Kernel to die 7735
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Kernel launched, with PID as a daemon 7735
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-11 23:40:53: Python Daemon (pid: 7732): Start pre-warmed Kernel in DS Kernel Launcher Daemon 7735 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"2c97711c-b2f6-476d-a5db-729155dc748c"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-7485MCPWsbX9nwy1.json']
Info 2021-05-11 23:40:53: Launching kernel daemon, Class name = f, completed in 445ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"2c97711c-b2f6-476d-a5db-729155dc748c\"","--shell=9007","--transport=\"tcp\"","--iopub=9009","--f=/tmp/tmp-7485MCPWsbX9nwy1.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-11 23:40:53: Launching kernel in kernelProcess.ts, Class name = b, completed in 470ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":7732},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":7732,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-11 23:40:55: Execute Cells request 1 1
Info 2021-05-11 23:40:55: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:55: Cell Index:1, state:undefined, exec: 5. User queued cell for execution
Info 2021-05-11 23:40:55: Cell Index:1, state:undefined, exec: 5. Ready to execute
Info 2021-05-11 23:40:55: Cell Index:1, state:undefined, exec: 5. Before Execute individual cell
Info 2021-05-11 23:40:55: Cell Index:1, state:undefined, exec: 5. Start execution
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: undefined. Send code for execution
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: undefined. Update output
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:40:55: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Kernel switching to idle
Info 2021-05-11 23:40:55: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Jupyter execution completed
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Completed successfully
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Completed successfully & resolving
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. After Execute individual cell 3
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Executed successfully in executeCell
Info 2021-05-11 23:40:55: Cell Index:1, state:3, exec: 2. Execution disposed
Info 2021-05-11 23:40:55: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:40:55: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-11 23:40:55: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:40:55: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.832913620/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Kernel launched, with PID 7751
Warn 2021-05-11 23:40:55: Python Daemon (pid: 7749): Waiting for Kernel to die 7751
Info 2021-05-11 23:40:55: Python Daemon (pid: 7749): Kernel launched, with PID as a daemon 7751
Info 2021-05-11 23:40:56: Trusting notebook...
Info 2021-05-11 23:41:03: Execute Cells request 1 1
Info 2021-05-11 23:41:03: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-11 23:41:03: Cell Index:1, state:1, exec: 2. User queued cell for execution
Info 2021-05-11 23:41:03: Cell Index:1, state:1, exec: 2. Ready to execute
Info 2021-05-11 23:41:03: Cell Index:1, state:1, exec: 2. Before Execute individual cell
Info 2021-05-11 23:41:03: Cell Index:1, state:1, exec: 2. Start execution
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: undefined. Send code for execution
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: undefined. Update output
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-11 23:41:03: �[32mPosting message to Notebook UI 
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Kernel switching to idle
Info 2021-05-11 23:41:03: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Jupyter execution completed
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Completed successfully
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Completed successfully & resolving
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. After Execute individual cell 3
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Executed successfully in executeCell
Info 2021-05-11 23:41:03: Cell Index:1, state:3, exec: 3. Execution disposed
Info 2021-05-11 23:41:04: Trusting notebook...

@DonJayamanne
Copy link
Contributor

DonJayamanne commented May 12, 2021

@ma137 woo hooo... that's great news
I believe the issue with not running until you have opened it the second time may have been resolved.
Please could you try updating to the latest version of the extension (please update VS Code Insiders as well), hopefully that should work now.

& thanks a lot for confirmation of the fix and providing the detailed logs for the other issue.

@ma137
Copy link
Author

ma137 commented May 12, 2021

@DonJayamanne That's indeed very nice that this bug is fixed now. 👍

I updated my VS Code Insiders installation and the Jupyter extension as you suggested. The problem that I have to open the notebook a second time in order to run cells persists for me.

Version numbers

  • VS Code Insiders: 1.57.0-insider ( commit: 37a12c9b0846167b2f68e9e1f276149d2d8b9b27 )
  • Jupyter extension: v2021.6.834931520
  • Python extension: v2021.5.829140558

Jupyter logs

Opening the notebook the first time (running cells does not work)
User belongs to experiment group 'pythonJediLSP'
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'pythonDiscoveryModuleWithoutWatcher'
User belongs to experiment group 'jupyterEnhancedDataViewer'
User belongs to experiment group 'NativeNotebookEditor'
Info 2021-05-12 18:56:02: ZMQ install verified.
Info 2021-05-12 18:56:03: Attempting to start a server because of preload conditions ...
Info 2021-05-12 18:56:03: Found existing keyfile at /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsecret
Info 2021-05-12 18:56:03: Checking if notebook is trusted
Info 2021-05-12 18:56:03: Check if Notebook is Trusted, Class name = p, completed in 111ms, has a truthy return value, Return Value: true
Info 2021-05-12 18:56:04: notebook communications already initialized for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:04: Attempting to start a server because of preload conditions ...
Info 2021-05-12 18:56:04: Search all interpreters /usr/bin/python, /usr/bin/python3
Info 2021-05-12 18:56:05: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:05: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:05: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:05: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import jupyter"
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import notebook"
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:05: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:05: Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json for /usr/bin/python3
Info 2021-05-12 18:56:06: Kernel python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6 matches Python 3.6.9 64-bit based on path in argv.
Info 2021-05-12 18:56:06: findPreferredKernel score for Python3, Python 3.6.9 64-bit is 121
Info 2021-05-12 18:56:06: findPreferredKernel score for Python 3.6.9 64-bit is 121
Info 2021-05-12 18:56:06: findPreferredKernel score for speclanguage=python, Python 2.7.17 64-bit is -1
Info 2021-05-12 18:56:06: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-12 18:56:06: findKernel found Python 3.6.9 64-bit
Info 2021-05-12 18:56:06: Find kernel spec, Class name = D, completed in 2750ms, has a truthy return value, Arg 1: , Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.9"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-12 18:56:06: PreferredConnection: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: TargetController found ID: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: initialize CommonMessageCoordinator
Info 2021-05-12 18:56:06: KernelProvider switched kernel to id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3}
Info 2021-05-12 18:56:06: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:56:06: Created and initailized CommonMessageCoordinator
Info 2021-05-12 18:56:06: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:06: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:07: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-12 18:56:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py jupyter kernelspec --version
Info 2021-05-12 18:56:07: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
Info 2021-05-12 18:56:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
Info 2021-05-12 18:56:08: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:56:08: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:08: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:08: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:08: Creating daemon pool for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:56:08: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:08: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:09: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:09: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:09: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:09: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Kernel launched, with PID 6433
Warn 2021-05-12 18:56:09: Python Daemon (pid: 6424): Waiting for Kernel to die 6433
Info 2021-05-12 18:56:09: Python Daemon (pid: 6424): Kernel launched, with PID as a daemon 6433
Info 2021-05-12 18:56:11: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-12 18:56:11: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:56:15: Execute Cells request 1 0
Info 2021-05-12 18:56:15: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:15: Starting Notebook in kernel.ts id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-12 18:56:15: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:15: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:15: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:15: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-12 18:56:15: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-12 18:56:15: installMissingDependencies /usr/bin/python3
Info 2021-05-12 18:56:15: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:15: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:15: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:15: Install Missing Dependencies, Class name = y, completed in 612ms, has a falsy return value, Return Value: undefined
Info 2021-05-12 18:56:15: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-12 18:56:15: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-12 18:56:15: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-12 18:56:16: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:16: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:16: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:16: Python Daemon (pid: 6424): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-12 18:56:16: Python Daemon (pid: 6424): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-12 18:56:16: Python Daemon (pid: 6424): Start pre-warmed Kernel in DS Kernel Launcher Daemon 6433 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"49d3c910-54ba-4bc5-9005-b419db64accd"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-6320a0sct2aGZsBn.json']
Info 2021-05-12 18:56:16: Launching kernel daemon, Class name = f, completed in 64ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"49d3c910-54ba-4bc5-9005-b419db64accd\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-6320a0sct2aGZsBn.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-12 18:56:16: Launching kernel in kernelProcess.ts, Class name = b, completed in 64ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":6424},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":6424,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-12 18:56:16: Raw session started and connected
Started kernel Python 3.6.9 64-bit
Info 2021-05-12 18:56:16: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-12 18:56:16: UpdateWorkingDirectoryAndPath
Info 2021-05-12 18:56:16: Kernel switching to busy
Info 2021-05-12 18:56:16: Kernel switching to idle
Info 2021-05-12 18:56:16: Kernel switching to busy
Info 2021-05-12 18:56:16: Kernel switching to idle
Info 2021-05-12 18:56:16: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-12 18:56:16: installMissingDependencies /usr/bin/python3
Info 2021-05-12 18:56:16: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:16: Finished connecting 3f6fbd19-09dc-4f09-80cf-52b2879a7cc4
Info 2021-05-12 18:56:16: Updating preferred kernel for remote notebook 86fc34e7-c7d6-4df5-bc69-74233f8def51
Info 2021-05-12 18:56:16: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is 86fc34e7-c7d6-4df5-bc69-74233f8def51
Info 2021-05-12 18:56:16: UpdateWorkingDirectoryAndPath
Info 2021-05-12 18:56:16: IPyWidgetScriptSource.initialize
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: Registering commtarget jupyter.widget
Info 2021-05-12 18:56:16: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-12 18:56:16: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:56:16: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:56:16: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:16: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:16: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:16: changeDirectoryIfPossible
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: Kernel switching to busy
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:56:16: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:56:16: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:56:16: Kernel switching to idle
Info 2021-05-12 18:56:16: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:56:16: Waiting for idle on (kernel): 86fc34e7-c7d6-4df5-bc69-74233f8def51 -> idle
Info 2021-05-12 18:56:16: Finished waiting for idle on (kernel): 86fc34e7-c7d6-4df5-bc69-74233f8def51 -> idle
Info 2021-05-12 18:56:16: Hooked up kernel restart handler
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:56:16: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:56:17: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:17: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:56:17: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:17: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:17: Install Missing Dependencies, Class name = y, completed in 1412ms, has a falsy return value, Return Value: undefined
Info 2021-05-12 18:56:17: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-12 18:56:17: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-12 18:56:17: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-12 18:56:17: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:56:17: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:17: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Kernel launched, with PID 6466
Warn 2021-05-12 18:56:17: Python Daemon (pid: 6463): Waiting for Kernel to die 6466
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Kernel launched, with PID as a daemon 6466
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-12 18:56:17: Python Daemon (pid: 6463): Start pre-warmed Kernel in DS Kernel Launcher Daemon 6466 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"f37a0448-43ff-4310-9b17-7903b5319f00"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-6320Qh1s5MFS10sY.json']
Info 2021-05-12 18:56:17: Launching kernel daemon, Class name = f, completed in 201ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"f37a0448-43ff-4310-9b17-7903b5319f00\"","--shell=9007","--transport=\"tcp\"","--iopub=9009","--f=/tmp/tmp-6320Qh1s5MFS10sY.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-12 18:56:17: Launching kernel in kernelProcess.ts, Class name = b, completed in 202ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":6463},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":6463,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-12 18:56:19: Execute Cells request 1 0
Info 2021-05-12 18:56:19: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:19: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:19: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:56:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:19: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Kernel launched, with PID 6482
Warn 2021-05-12 18:56:19: Python Daemon (pid: 6480): Waiting for Kernel to die 6482
Info 2021-05-12 18:56:19: Python Daemon (pid: 6480): Kernel launched, with PID as a daemon 6482
Info 2021-05-12 18:56:21: Execute Cells request 1 1
Info 2021-05-12 18:56:21: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:56:22: Execute Cells request 1 1
Info 2021-05-12 18:56:22: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Closing the notebook
Info 2021-05-12 18:58:28: Kernel got disposed as a result of notebook.onDisposed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:58:28: Kernel got disposed, hence there is no longer a kernel associated with file:///home/ubu/test/Untitled.ipynb file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:58:28: Shutting down session file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:58:28: Shutdown session - current session
Info 2021-05-12 18:58:28: shutdownSession 86fc34e7-c7d6-4df5-bc69-74233f8def51, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - start
Info 2021-05-12 18:58:28: Session can be shutdown .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-12 18:58:28: Dispose Kernel process
Info 2021-05-12 18:58:28: kill daemon
Info 2021-05-12 18:58:28: Notebook Closed file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:58:28: Cancel pending cells
Info 2021-05-12 18:58:28: Cancel pending cells
Info 2021-05-12 18:58:28: Cancel pending cells
Info 2021-05-12 18:58:28: Cancel pending cells
Info 2021-05-12 18:58:28: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 6424}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 6424}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 6424}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 6433", "pid": 6424}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 3, "result": null}
Info 2021-05-12 18:58:28: Python Daemon (pid: 6424): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-12 18:58:28: Python Daemon (pid: 6424): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-12 18:58:28: Python Daemon (pid: 6424): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:58:28: Python Daemon (pid: 6424): Kill kernel in DS Kernel Launcher Daemon, pid 6433
Info 2021-05-12 18:58:28: Dispose Kernel process
Info 2021-05-12 18:58:28: shutdownSession 86fc34e7-c7d6-4df5-bc69-74233f8def51, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - shutdown complete
Info 2021-05-12 18:58:28: Dispose Kernel process
Info 2021-05-12 18:58:28: Shutdown session - get restart session
Info 2021-05-12 18:58:28: Shutdown session - shutdown restart session
Info 2021-05-12 18:58:28: shutdownSession b3aba11b-4d51-4143-995e-1f80b0b004e0, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - start
Info 2021-05-12 18:58:28: Session can be shutdown .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-12 18:58:28: Dispose Kernel process
Info 2021-05-12 18:58:28: kill daemon
Info 2021-05-12 18:58:29: KernelProcess output: Content-Length: 131
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel in DS Daemon", "pid": 6463}}Content-Length: 140
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Execute rpc method kill_kernel from /usr/bin/python3", "pid": 6463}}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon", "pid": 6463}}Content-Length: 138
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "INFO", "msg": "Kill kernel in DS Kernel Launcher Daemon, pid 6466", "pid": 6463}}Content-Length: 43
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "id": 3, "result": null}Content-Length: 128
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "log", "params": {"level": "WARNING", "msg": "Kernel has exited with exit code -9, ", "pid": 6463}}Content-Length: 86
Content-Type: application/vscode-jsonrpc; charset=utf8

{"jsonrpc": "2.0", "method": "kernel_died", "params": {"exit_code": -9, "reason": ""}}
Info 2021-05-12 18:58:29: KernelProcess Exit Exit - undefined
Info 2021-05-12 18:58:29: Python Daemon (pid: 6463): Execute rpc method kill_kernel in DS Daemon
Info 2021-05-12 18:58:29: Python Daemon (pid: 6463): Execute rpc method kill_kernel from /usr/bin/python3
Info 2021-05-12 18:58:29: Python Daemon (pid: 6463): Kill kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:58:29: Python Daemon (pid: 6463): Kill kernel in DS Kernel Launcher Daemon, pid 6466
Info 2021-05-12 18:58:29: Dispose Kernel process
Info 2021-05-12 18:58:29: shutdownSession b3aba11b-4d51-4143-995e-1f80b0b004e0, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 - shutdown complete
Info 2021-05-12 18:58:29: Dispose Kernel process
Info 2021-05-12 18:58:29: Shutdown session -- complete
Warn 2021-05-12 18:58:29: Python Daemon (pid: 6463): Kernel has exited with exit code -9,
Info 2021-05-12 18:58:29: KernelProcess Exit Exit - undefined

Opening the notebook the second time (running cells does work)
Info 2021-05-12 18:59:07: Checking if notebook is trusted
Info 2021-05-12 18:59:07: Check if Notebook is Trusted, Class name = p, completed in 3ms, has a truthy return value, Return Value: true
Info 2021-05-12 18:59:07: Setting setActiveController for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: KernelProvider switched kernel to id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3}
Info 2021-05-12 18:59:07: Intiailize notebook communications for editor file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: Resolving notebook UI Comms (resolve) for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: initialize CommonMessageCoordinator
Info 2021-05-12 18:59:07: Attempting to start a server because of preload conditions ...
Info 2021-05-12 18:59:07: findPreferredKernel score for Python3, Python 3.6.9 64-bit is 121
Info 2021-05-12 18:59:07: findPreferredKernel score for Python 3.6.9 64-bit is 121
Info 2021-05-12 18:59:07: findPreferredKernel score for speclanguage=python, Python 2.7.17 64-bit is -1
Info 2021-05-12 18:59:07: findPreferredKernel score for Python 2.7.17 64-bit is 1
Info 2021-05-12 18:59:07: findKernel found Python 3.6.9 64-bit
Info 2021-05-12 18:59:07: Find kernel spec, Class name = D, completed in 47ms, has a truthy return value, Arg 1: , Arg 2: {"interpreter":{"hash":"31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"},"kernelspec":{"display_name":"Python 3.6.9 64-bit","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.6.9"}}, Arg 3: {"_isCancelled":false,"_emitter":null}, Return Value: {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-12 18:59:07: PreferredConnection: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 found for NotebookDocument: file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: TargetController found ID: .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3 for document file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: Switch kernel did not change kernel.
Info 2021-05-12 18:59:07: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:59:07: Created and initailized CommonMessageCoordinator
Info 2021-05-12 18:59:07: Attach Coordinator for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:07: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:07: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-12 18:59:07: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py pip list
Info 2021-05-12 18:59:08: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:11: �[32mWidget Coordinator received IPyWidgets_Ready
Info 2021-05-12 18:59:11: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:59:32: Execute Cells request 1 0
Info 2021-05-12 18:59:32: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:32: Starting Notebook in kernel.ts id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3
Info 2021-05-12 18:59:32: Cell Index:0, state:undefined, exec: 1. User queued cell for execution
Info 2021-05-12 18:59:32: Creating raw notebook for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:32: Getting preferred kernel for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:32: Computing working directory file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:32: Connecting to raw session for file:///home/ubu/test/Untitled.ipynb with connection {"kind":"startUsingPythonInterpreter","kernelSpec":{"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"},"interpreter":{"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"},"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3"}
Info 2021-05-12 18:59:32: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-12 18:59:32: installMissingDependencies /usr/bin/python3
Info 2021-05-12 18:59:32: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:32: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:32: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:33: Install Missing Dependencies, Class name = y, completed in 1153ms, has a falsy return value, Return Value: undefined
Info 2021-05-12 18:59:33: Kernel launching with ports 9000,9001,9002,9003,9004. Start port is 9000
Info 2021-05-12 18:59:33: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-12 18:59:33: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-12 18:59:33: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:33: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:33: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:33: Python Daemon (pid: 6480): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-12 18:59:33: Python Daemon (pid: 6480): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-12 18:59:33: Python Daemon (pid: 6480): Start pre-warmed Kernel in DS Kernel Launcher Daemon 6482 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9003', '--control=9001', '--hb=9000', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"7f5ce6eb-6c4e-4601-b227-832fcaa9a298"', '--shell=9002', '--transport="tcp"', '--iopub=9004', '--f=/tmp/tmp-6320OTQ4Yf9vyTcN.json']
Info 2021-05-12 18:59:33: Launching kernel daemon, Class name = f, completed in 68ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9003","--control=9001","--hb=9000","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"7f5ce6eb-6c4e-4601-b227-832fcaa9a298\"","--shell=9002","--transport=\"tcp\"","--iopub=9004","--f=/tmp/tmp-6320OTQ4Yf9vyTcN.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-12 18:59:33: Launching kernel in kernelProcess.ts, Class name = b, completed in 69ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":6480},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":6480,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-12 18:59:33: Raw session started and connected
Started kernel Python 3.6.9 64-bit
Info 2021-05-12 18:59:33: Initial setup for file:///home/ubu/test/Untitled.ipynb starting ...
Info 2021-05-12 18:59:33: UpdateWorkingDirectoryAndPath
Info 2021-05-12 18:59:33: Kernel switching to busy
Info 2021-05-12 18:59:33: Kernel switching to idle
Info 2021-05-12 18:59:33: Kernel switching to busy
Info 2021-05-12 18:59:33: Kernel switching to idle
Info 2021-05-12 18:59:33: Starting raw kernel Python 3.6.9 64-bit
Info 2021-05-12 18:59:33: installMissingDependencies /usr/bin/python3
Info 2021-05-12 18:59:33: Initial setup complete for file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:33: Finished connecting 3f6fbd19-09dc-4f09-80cf-52b2879a7cc4
Info 2021-05-12 18:59:33: Updating preferred kernel for remote notebook d44a8a4a-191f-444d-a12e-8700e0bc82b5
Info 2021-05-12 18:59:33: Preferred kernel for file:///home/ubu/test/Untitled.ipynb is d44a8a4a-191f-444d-a12e-8700e0bc82b5
Info 2021-05-12 18:59:33: UpdateWorkingDirectoryAndPath
Info 2021-05-12 18:59:33: IPyWidgetScriptSource.initialize
Info 2021-05-12 18:59:33: �[32mWidget Coordinator sent IPyWidgets_kernelOptions
Info 2021-05-12 18:59:33: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:33: Registering commtarget jupyter.widget
Info 2021-05-12 18:59:33: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_registerCommTarget
Info 2021-05-12 18:59:34: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:59:34: IPyWidgetMessageDispatcher.initialize
Info 2021-05-12 18:59:34: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:34: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:34: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:34: changeDirectoryIfPossible
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Kernel switching to busy
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Kernel switching to idle
Info 2021-05-12 18:59:34: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Waiting for idle on (kernel): d44a8a4a-191f-444d-a12e-8700e0bc82b5 -> idle
Info 2021-05-12 18:59:34: Finished waiting for idle on (kernel): d44a8a4a-191f-444d-a12e-8700e0bc82b5 -> idle
Info 2021-05-12 18:59:34: Hooked up kernel restart handler
Info 2021-05-12 18:59:34: Cell Index:0, state:2, exec: undefined. Ready to execute
Info 2021-05-12 18:59:34: Cell Index:0, state:2, exec: undefined. Before Execute individual cell
Info 2021-05-12 18:59:34: Cell Index:0, state:2, exec: undefined. Start execution
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: undefined. Send code for execution
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-12 18:59:34: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:34: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: undefined. Update output
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:34: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Kernel switching to idle
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Jupyter execution completed
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Completed successfully
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Completed successfully & resolving
Info 2021-05-12 18:59:34: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. After Execute individual cell 3
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Executed successfully in executeCell
Info 2021-05-12 18:59:34: Cell Index:0, state:3, exec: 1. Execution disposed
Info 2021-05-12 18:59:35: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:35: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:59:35: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:59:35: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:59:35: Install Missing Dependencies, Class name = y, completed in 1513ms, has a falsy return value, Return Value: undefined
Info 2021-05-12 18:59:35: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
Info 2021-05-12 18:59:35: Launching kernel daemon for Python 3.6.9 64-bit # /usr/bin/python3
Info 2021-05-12 18:59:35: No custom variables for Kernel as interpreter is not conda, but is Unknown
Info 2021-05-12 18:59:35: Cached data exists getEnvironmentVariables, 
Info 2021-05-12 18:59:35: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:35: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py -c "import ipykernel"
Info 2021-05-12 18:59:35: Trusting notebook...
Info 2021-05-12 18:59:35: Wrote trust for file:///home/ubu/test/Untitled.ipynb to /home/ubu/.config/Code - Insiders/User/globalStorage/ms-toolsai.jupyter/nbsignatures/28bad536c96edafcfd63b738e8dc7ea48f462b8d4efcc6cca357e0042183f267
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Kernel launched, with PID 6548
Warn 2021-05-12 18:59:35: Python Daemon (pid: 6545): Waiting for Kernel to die 6548
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Kernel launched, with PID as a daemon 6548
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Execute rpc method start_prewarmed_kernel in DS Daemon
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Execute rpc method start_prewarmed_kernel from /usr/bin/python3
Info 2021-05-12 18:59:35: Python Daemon (pid: 6545): Start pre-warmed Kernel in DS Kernel Launcher Daemon 6548 with args ['ipykernel_launcher', '--ip=127.0.0.1', '--stdin=9008', '--control=9006', '--hb=9005', '--Session.signature_scheme="hmac-sha256"', '--Session.key=b"0a38aebf-8e05-41c5-bc6a-6f1cc034583a"', '--shell=9007', '--transport="tcp"', '--iopub=9009', '--f=/tmp/tmp-63204QJdH3annF1G.json']
Info 2021-05-12 18:59:35: Launching kernel daemon, Class name = f, completed in 375ms, has a truthy return value, Arg 1: , Arg 2: "/home/ubu/test", Arg 3: {"specFile":"/usr/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/usr/bin/python3","name":"python369jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["/usr/bin/python3","-m","ipykernel_launcher","--ip=127.0.0.1","--stdin=9008","--control=9006","--hb=9005","--Session.signature_scheme=\"hmac-sha256\"","--Session.key=b\"0a38aebf-8e05-41c5-bc6a-6f1cc034583a\"","--shell=9007","--transport=\"tcp\"","--iopub=9009","--f=/tmp/tmp-63204QJdH3annF1G.json"],"language":"python","path":"/usr/bin/python3","display_name":"Python 3.6.9 64-bit"}, Arg 4: {"architecture":3,"path":"/usr/bin/python3","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.9","major":3,"minor":6,"patch":9,"prerelease":[],"build":[],"version":"3.6.9"},"sysVersion":"3.6.9 (default, Jan 26 2021, 15:33:00) \n[GCC 8.4.0]","sysPrefix":"/usr","fileHash":"4d55161385b07a9eca8c70b7bcdbae8117155609c991e1be40ad794f872a6b1339b001aeb9caf08492b305ed215105357f6021a21811b4a73ea15c60ceca8e87","envType":"Unknown","cachedEntry":true,"displayName":"Python 3.6.9 64-bit"}, Return Value: 
Info 2021-05-12 18:59:35: Launching kernel in kernelProcess.ts, Class name = b, completed in 375ms, has a truthy return value, Arg 1: "/home/ubu/test", Return Value: {"proc":{"_events":{},"_eventsCount":2,"_closesNeeded":3,"_closesGot":0,"connected":false,"signalCode":null,"exitCode":null,"killed":false,"spawnfile":"/usr/bin/python3","_handle":{"pid":6545},"spawnargs":["/usr/bin/python3","/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py","vscode_datascience_helpers.daemon","--daemon-module=vscode_datascience_helpers.kernel_launcher_daemon","-v"],"pid":6545,"stdin":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdout":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stderr":{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},"stdio":[{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":null,"ended":false,"endEmitted":false,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null,"readable":false},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{"close":[null,null]},"_eventsCount":4,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null},{"connecting":false,"_hadError":false,"_parent":null,"_host":null,"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":[],"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"destroyed":false,"errored":null,"closed":false,"closeEmitted":false,"defaultEncoding":"utf8","awaitDrainWriters":null,"multiAwaitDrain":false,"readingMore":false,"decoder":null,"encoding":null},"_events":{},"_eventsCount":3,"_writableState":{"objectMode":false,"highWaterMark":16384,"finalCalled":false,"needDrain":false,"ending":false,"ended":false,"finished":false,"destroyed":false,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"afterWriteTickInfo":null,"buffered":[],"bufferedIndex":0,"allBuffers":true,"allNoop":true,"pendingcb":0,"prefinished":false,"errorEmitted":false,"emitClose":false,"autoDestroy":false,"errored":null,"closed":false,"writable":false,"closeEmitted":false},"allowHalfOpen":false,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":null,"_server":null}]},"out":{"_isScalar":false,"observers":[],"closed":false,"isStopped":false,"hasError":false,"thrownError":null}}
Info 2021-05-12 18:59:37: Cached data exists getEnvironmentVariables, /home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:37: Creating daemon process for /usr/bin/python3 with env variables count 0
Info 2021-05-12 18:59:37: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:59:37: Process Execution: > /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
> /usr/bin/python3 ~/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.kernel_launcher_daemon -v
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Execute rpc method prewarm_kernel in DS Daemon
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Execute rpc method prewarm_kernel from /usr/bin/python3
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Pre-Warm DS Kernel in DS Kernel Launcher Daemon
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Exec in DS Kernel Launcher Daemon (observable) ['/usr/bin/python3', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/../pyvsc-run-isolated.py', '/home/ubu/.vscode-insiders/extensions/ms-toolsai.jupyter-2021.6.834931520/pythonFiles/vscode_datascience_helpers/kernel_prewarm_starter.py']
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Exec in DS Kernel Launcher Daemon (observable)
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Kernel launched, with PID 6564
Warn 2021-05-12 18:59:37: Python Daemon (pid: 6562): Waiting for Kernel to die 6564
Info 2021-05-12 18:59:37: Python Daemon (pid: 6562): Kernel launched, with PID as a daemon 6564
Info 2021-05-12 18:59:37: Execute Cells request 1 0
Info 2021-05-12 18:59:37: Execute Cell 0 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:37: Cell Index:0, state:1, exec: 1. User queued cell for execution
Info 2021-05-12 18:59:37: Cell Index:0, state:1, exec: 1. Ready to execute
Info 2021-05-12 18:59:37: Cell Index:0, state:1, exec: 1. Before Execute individual cell
Info 2021-05-12 18:59:37: Cell Index:0, state:1, exec: 1. Start execution
Info 2021-05-12 18:59:37: Cell Index:0, state:3, exec: undefined. Send code for execution
Info 2021-05-12 18:59:37: Cell Index:0, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:37: Cell Index:0, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:37: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:59:37: Cell Index:0, state:3, exec: undefined. Update output
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:37: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:37: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:38: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Kernel switching to idle
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Jupyter execution completed
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Completed successfully
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Completed successfully & resolving
Info 2021-05-12 18:59:38: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. After Execute individual cell 3
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Executed successfully in executeCell
Info 2021-05-12 18:59:38: Cell Index:0, state:3, exec: 2. Execution disposed
Info 2021-05-12 18:59:39: Trusting notebook...
Info 2021-05-12 18:59:40: Execute Cells request 1 1
Info 2021-05-12 18:59:40: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:40: Cell Index:1, state:undefined, exec: 2. User queued cell for execution
Info 2021-05-12 18:59:40: Cell Index:1, state:undefined, exec: 2. Ready to execute
Info 2021-05-12 18:59:40: Cell Index:1, state:undefined, exec: 2. Before Execute individual cell
Info 2021-05-12 18:59:40: Cell Index:1, state:undefined, exec: 2. Start execution
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: undefined. Send code for execution
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: undefined. Update output
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:40: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:40: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Kernel switching to idle
Info 2021-05-12 18:59:40: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Jupyter execution completed
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Completed successfully
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Completed successfully & resolving
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. After Execute individual cell 3
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Executed successfully in executeCell
Info 2021-05-12 18:59:40: Cell Index:1, state:3, exec: 3. Execution disposed
Info 2021-05-12 18:59:41: Trusting notebook...
Info 2021-05-12 18:59:45: Execute Cells request 1 1
Info 2021-05-12 18:59:45: Execute Cell 1 file:///home/ubu/test/Untitled.ipynb
Info 2021-05-12 18:59:45: Cell Index:1, state:1, exec: 3. User queued cell for execution
Info 2021-05-12 18:59:45: Cell Index:1, state:1, exec: 3. Ready to execute
Info 2021-05-12 18:59:45: Cell Index:1, state:1, exec: 3. Before Execute individual cell
Info 2021-05-12 18:59:45: Cell Index:1, state:1, exec: 3. Start execution
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: undefined. Send code for execution
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: undefined. Wait for jupyter execution
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_mirror_execute
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: undefined. Kernel switching to busy
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Busy
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: undefined. Update output
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: �[32mWidget Coordinator sent IPyWidgets_msg
Info 2021-05-12 18:59:45: �[32mPosting message to Notebook UI 
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_iopub_msg_handled
Info 2021-05-12 18:59:45: �[32mWidget Coordinator received IPyWidgets_msg_received
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Kernel switching to idle
Info 2021-05-12 18:59:45: Notebook Session status file:///home/ubu/test/Untitled.ipynb # Idle
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Jupyter execution completed
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Completed successfully
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Completed successfully & resolving
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. After Execute individual cell 3
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Executed successfully in executeCell
Info 2021-05-12 18:59:45: Cell Index:1, state:3, exec: 4. Execution disposed
Info 2021-05-12 18:59:46: Trusting notebook...

Note: Today, I removed the additional settings for settings.json described in your post from Monday. If I understand you correctly, these should be no more necessary. As expected, they seem to make no difference at the moment.

@DonJayamanne
Copy link
Contributor

The problem that I have to open the notebook a second time in order to run cells persists for me.

Yup, we too can now replicate this issue.
Sorry I got you to try that.

I'm going to close this issue and create a separate one to track new execution bug.
New issue for the new bug #5858

@ma137
Copy link
Author

ma137 commented May 12, 2021

Having a new issue for a new bug sounds good to me! 🙂

Thanks a lot for fixing the bug!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

No branches or pull requests

12 participants