microsoft / vscode-jupyter

VS Code Jupyter extension
https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter
MIT License
1.27k stars 284 forks source link

notebook crash when displaying Plotly FigureWidget #13214

Closed FlorinAndrei closed 1 year ago

FlorinAndrei commented 1 year ago

Applies To

What happened?

Running latest VSCode on Win10. Connecting remotely via the SSH plugin to an Ubuntu 22.04 machine. The notebooks run on Ubuntu.

I am following this article to build a GUI with ipywidgets:

https://towardsdatascience.com/how-to-build-a-custom-labeler-in-python-with-ipywidgets-and-plotly-f6cc1fd7e3cc

Using Plotly, I generate a FigureWidget, I fill it in with data from Plotly Express imshow(), then I try to display the FigureWidget:

import plotly.graph_objects as go
import plotly.express as px
import numpy as np

sz = 512
img_arr = np.zeros((sz, sz), dtype=np.uint8)
for i in range(sz):
    for j in range(sz):
        img_arr[i, j] = int(255 * (i + j) / (2 * sz))
img_arr = np.stack([img_arr] * 3, axis=2)

img_trace = px.imshow(img_arr)
img_fig = go.FigureWidget()
img_fig.add_trace(img_trace.data[0])
display(img_fig)

This will make the notebook crash when I move the mouse over the displayed figure. I am asked to optionally save the notebook after the crash. There is actually no way to close the crashed notebook, I have to close the remote connection altogether.

If I run the code in the regular Jupyter Notebook server on Linux, and access it from Win10 via Chrome, it does not crash.

If I do display(img_trace) directly, bypassing the Plotly FigureWidget, the crash never happens in VSCode. It looks like go.FigureWidget() makes VSCode crash.

VS Code Version

Version: 1.76.2 (user setup) Commit: ee2b180d582a7f601fa6ecfdad8d9fd269ab1884 Date: 2023-03-14T17:55:54.936Z Electron: 19.1.11 Chromium: 102.0.5005.196 Node.js: 16.14.2 V8: 10.2.154.26-electron.0 OS: Windows_NT x64 10.0.19044 Sandboxed: No

Jupyter Extension Version

v2023.2.1200692131

Jupyter logs

Visual Studio Code (1.76.2, ssh-remote, desktop)
Jupyter Extension Version: 2023.2.1200692131.
Python Extension Version: 2023.4.1.
Workspace folder /home/florin/git/segmentation-peak4
User belongs to experiment group 'jupyterEnhancedDataViewer'
User belongs to experiment group 'jupyterTest'
info 12:30:50.495: LSP Notebooks experiment is enabled
info 12:30:50.853: Checking for server existence.
info 12:30:50.854: Connecting to server
info 12:30:50.854: Connecting remote server kernel http://127.0.0.1:8888/
Connecting to Jupyter server at http://127.0.0.1:8888/
info 12:30:50.855: Creating server with url : http://127.0.0.1:8888/
info 12:30:50.868: Server started.
info 12:30:50.868: Creating server with url : http://127.0.0.1:8888/
error 12:30:50.883: Error fetching remote kernels: [FetchError: request to http://127.0.0.1:8888/api/kernels?1680118250869 failed, reason: connect ECONNREFUSED 127.0.0.1:8888
    at ClientRequest.<anonymous> (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739)
    at ClientRequest.emit (node:events:526:28)
    at Socket.socketErrorListener (node:_http_client:442:9)
    at Socket.emit (node:events:526:28)
    at emitErrorNT (node:internal/streams/destroy:157:8)
    at emitErrorCloseNT (node:internal/streams/destroy:122:3)
    at processTicksAndRejections (node:internal/process/task_queues:83:21)]
error 12:30:50.884: UniversalRemoteKernelFinder: Failed to get kernels without cache [FetchError: request to http://127.0.0.1:8888/api/kernels?1680118250869 failed, reason: connect ECONNREFUSED 127.0.0.1:8888
    at ClientRequest.<anonymous> (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739)
    at ClientRequest.emit (node:events:526:28)
    at Socket.socketErrorListener (node:_http_client:442:9)
    at Socket.emit (node:events:526:28)
    at emitErrorNT (node:internal/streams/destroy:157:8)
    at emitErrorCloseNT (node:internal/streams/destroy:122:3)
    at processTicksAndRejections (node:internal/process/task_queues:83:21)]
error 12:30:50.885: SessionManager:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at e.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:172349)
    at u.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:63778)
    at hg.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:269825)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at async bg.listKernelsFromConnection (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:282210)]
warn 12:30:51.771: Failed to get activated env vars with python /bin/python3 in 541ms
info 12:30:51.785: Process Execution: > /bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");"
> /bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");"
info 12:30:51.816: Process Execution: > /bin/python3 -m pip list
> /bin/python3 -m pip list
info 12:30:51.947: Checking for server existence.
info 12:30:51.947: Connecting to server
info 12:30:51.947: Connecting remote server kernel http://127.0.0.1:8888/
Connecting to Jupyter server at http://127.0.0.1:8888/
info 12:30:51.948: Creating server with url : http://127.0.0.1:8888/
info 12:30:51.950: Server started.
info 12:30:51.950: Creating server with url : http://127.0.0.1:8888/
error 12:30:51.967: Error fetching remote kernels: [FetchError: request to http://127.0.0.1:8888/api/kernels?1680118251951 failed, reason: connect ECONNREFUSED 127.0.0.1:8888
    at ClientRequest.<anonymous> (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739)
    at ClientRequest.emit (node:events:526:28)
    at Socket.socketErrorListener (node:_http_client:442:9)
    at Socket.emit (node:events:526:28)
    at emitErrorNT (node:internal/streams/destroy:157:8)
    at emitErrorCloseNT (node:internal/streams/destroy:122:3)
    at processTicksAndRejections (node:internal/process/task_queues:83:21)]
error 12:30:51.968: UniversalRemoteKernelFinder: Failed to get kernels without cache [FetchError: request to http://127.0.0.1:8888/api/kernels?1680118251951 failed, reason: connect ECONNREFUSED 127.0.0.1:8888
    at ClientRequest.<anonymous> (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739)
    at ClientRequest.emit (node:events:526:28)
    at Socket.socketErrorListener (node:_http_client:442:9)
    at Socket.emit (node:events:526:28)
    at emitErrorNT (node:internal/streams/destroy:157:8)
    at emitErrorCloseNT (node:internal/streams/destroy:122:3)
    at processTicksAndRejections (node:internal/process/task_queues:83:21)]
error 12:30:51.968: SessionManager:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at e.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:172349)
    at u.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:63778)
    at hg.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:269825)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at async bg.listKernelsFromConnection (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:282210)]

Coding Language and Runtime Version

Python 3.10.6

Language Extension Version (if applicable)

v2023.4.1

Anaconda Version (if applicable)

No response

Running Jupyter locally or remotely?

Remote

FlorinAndrei commented 1 year ago

Plotly 5.10.0

DonJayamanne commented 1 year ago

Thanks for filing this issue and sorry you are running into this

FlorinAndrei commented 1 year ago

Regular Python env.

List of Modules ``` 2to3==1.0 absl-py==1.2.0 addict==2.4.0 aicrowd-cli==0.1.15 aiohttp==3.8.1 aiohttp-retry==2.8.3 aiosignal==1.2.0 albumentations==1.2.1 alembic==1.8.1 altair==4.2.0 amqp==5.1.1 antlr4-python3-runtime==4.9.3 anyio==3.6.1 appdirs==1.4.4 apturl==0.5.2 arch==5.3.1 argon2-cffi==21.3.0 argon2-cffi-bindings==21.2.0 arrow==1.2.3 asgiref==3.5.2 astor==0.8.1 asttokens==2.0.7 async-timeout==4.0.2 asyncssh==2.12.0 atpublic==3.0.1 attrs==22.1.0 autopage==0.5.1 autopep8==1.7.0 awscli==1.22.34 Babel==2.10.3 backcall==0.2.0 bayesian-optimization==1.2.0 bcrypt==3.2.0 beautifulsoup4==4.11.1 beniget==0.4.1 billiard==3.6.4.0 black==23.1.0 bleach==5.0.1 blinker==1.4 blis==0.7.8 botocore==1.23.34 Brlapi==0.8.3 Brotli==1.0.9 cachetools==5.2.0 catalogue==2.0.8 catboost==1.1 celery==5.2.7 certifi==2020.6.20 cffi==1.15.1 cfgv==3.3.1 chardet==4.0.0 charset-normalizer==2.1.0 click==8.1.3 click-didyoumean==0.3.0 click-plugins==1.1.1 click-repl==0.2.0 cliff==4.0.0 cmaes==0.8.2 cmd2==2.4.2 cmdstanpy==1.0.7 colorama==0.4.5 colorful==0.5.4 colorlog==6.7.0 command-not-found==0.3 commonmark==0.9.1 configobj==5.0.6 contextvars==2.4 contourpy==1.0.5 convertdate==2.4.0 cramjam==2.5.0 cryptography==3.4.8 cupshelpers==1.0 cupy-cuda113==10.6.0 cycler==0.11.0 cymem==2.0.6 Cython==0.29.32 datasets==2.6.1 dbus-python==1.2.18 deap==1.3.3 debugpy==1.6.2 decorator==5.1.1 defer==1.0.6 defusedxml==0.7.1 dictdiffer==0.9.0 dill==0.3.5.1 diskcache==5.4.0 distlib==0.3.6 distro==1.7.0 distro-info===1.1build1 dnspython==2.1.0 docopt==0.6.2 docutils==0.17.1 dpath==2.0.6 duckduckgo-search==2.0.2 dulwich==0.20.46 duplicity==0.8.21 dvc==2.28.0 dvc-data==0.13.0 dvc-http==2.27.2 dvc-objects==0.5.0 dvc-render==0.0.11 dvc-task==0.1.2 dvclive==0.10.0 efficientnet-pytorch==0.7.1 entrypoints==0.4 ephem==4.1.3 et-xmlfile==1.1.0 etils==0.7.1 ety==1.4.0 evaluate==0.3.0 executing==0.9.1 factor-analyzer==0.4.1 Faker==15.0.0 fastai==2.7.10 fastbook==0.0.26 fastcore==1.5.17 fastdownload==0.0.7 fasteners==0.14.1 fastjsonschema==2.16.1 fastkaggle==0.0.7 fastparquet==0.8.3 fastprogress==1.0.3 fastrlock==0.8 filelock==3.8.0 flatten-dict==0.4.2 flufl.lock==7.0 fonttools==4.34.4 formulaic==0.3.4 frozenlist==1.3.1 fs==2.4.12 fsspec==2022.7.1 funcy==1.17 future==0.18.2 fuzzywuzzy==0.18.0 gast==0.5.2 gitdb==4.0.9 GitPython==3.1.18 google-auth==2.11.0 google-auth-oauthlib==0.4.6 gpg===1.16.0-unknown grandalf==0.6 graphviz==0.20.1 greenlet==1.1.3 grpcio==1.47.0 h11==0.13.0 h5py==3.7.0 hijri-converter==2.2.4 holidays==0.16 html5lib==1.1 htmlmin==0.1.12 htmltools==0.1.2 httplib2==0.20.2 huggingface-hub==0.10.1 hydra-core==1.2.0 icecream==2.1.3 identify==2.5.5 idna==3.3 ImageHash==4.2.1 imageio==2.21.1 imgaug==0.4.0 immutables==0.18 importlib-metadata==4.6.4 importlib-resources==5.9.0 interface-meta==1.3.0 iotop==0.6 ipykernel==6.16.0 ipympl==0.9.2 ipython==8.5.0 ipython-genutils==0.2.0 ipywidgets==7.7.2 iterative-telemetry==0.0.5 jarowinkler==1.2.3 jax==0.3.20 jedi==0.18.1 jeepney==0.7.1 Jinja2==3.1.2 jmespath==0.10.0 joblib==1.1.0 json5==0.9.9 jsonschema==4.9.1 jupyter-contrib-core==0.4.0 jupyter-contrib-nbextensions==0.5.1 jupyter-core==4.11.1 jupyter-highlight-selected-word==0.2.0 jupyter-latex-envs==1.4.6 jupyter-nbextensions-configurator==0.5.0 jupyter-server==1.19.1 jupyter_client==7.3.5 jupyterlab==3.4.7 jupyterlab-pygments==0.2.2 jupyterlab-widgets==1.1.1 jupyterlab_server==2.15.2 kaggle==1.5.12 keyring==23.5.0 kiwisolver==1.4.4 kombu==5.2.4 korean-lunar-calendar==0.2.1 langcodes==3.3.0 language-selector==0.1 launchpadlib==1.10.16 lazr.restfulclient==0.14.4 lazr.uri==1.0.6 Levenshtein==0.20.5 lightgbm==3.3.2 linearmodels==4.27 linkify-it-py==2.0.0 lloyd==0.0.10 llvmlite==0.39.1 lmdiag==0.3.7 lockfile==0.12.2 louis==3.20.0 LunarCalendar==0.0.9 lxml==4.9.1 lz4==3.1.3+dfsg macaroonbakery==1.3.1 Mako==1.1.3 Markdown==3.3.6 markdown-it-py==2.1.0 MarkupSafe==2.1.1 matplotlib==3.6.0 matplotlib-inline==0.1.6 mdit-py-plugins==0.3.0 mdurl==0.1.1 missingno==0.5.1 mistune==2.0.4 mizani==0.8.1 mlxtend==0.21.0 mmcls==0.25.0 mmcv-full==1.7.1 mmsegmentation==0.30.0 model-index==0.1.11 monotonic==1.6 more-itertools==8.10.0 mpmath==1.2.1 multidict==6.0.2 multimethod==1.8 multiprocess==0.70.13 munch==2.5.0 murmurhash==1.0.7 mypy-extensions==0.4.3 mysqlclient==2.1.1 nanotime==0.5.2 nb-clean==2.3.0 nbclassic==0.4.4 nbclient==0.5.13 nbconvert==7.0.0 nbformat==5.6.1 nest-asyncio==1.5.5 netifaces==0.11.0 networkx==2.8.5 nodeenv==1.7.0 notebook==6.4.12 notebook-shim==0.1.0 ntlm-auth==1.5.0 Nuitka==1.5.1 numba==0.56.4 numpy==1.23.3 nvidia-cublas-cu11==11.10.3.66 nvidia-cuda-nvrtc-cu11==11.7.99 nvidia-cuda-runtime-cu11==11.7.99 nvidia-cudnn-cu11==8.5.0.96 oauthlib==3.2.0 olefile==0.46 omegaconf==2.2.2 opencv-python==4.6.0.66 opencv-python-headless==4.6.0.66 openmim==0.3.6 openpyxl==3.0.10 opt-einsum==3.3.0 optuna==3.0.2 ordered-set==4.1.0 p-tqdm==1.4.0 packaging==23.0 palettable==3.3.0 pandas==1.5.0 pandocfilters==1.5.0 paramiko==2.9.3 parso==0.8.3 patchelf==0.17.2.1 pathos==0.2.9 pathspec==0.9.0 pathy==0.6.2 patsy==0.5.2 pbr==5.10.0 pexpect==4.8.0 phik==0.12.2 pickleshare==0.7.5 Pillow==9.2.0 pipreqs==0.4.11 pipreqsnb==0.2.4 platformdirs==2.5.2 plotly==5.10.0 plotnine==0.10.1 ply==3.11 portalocker==2.6.0 pox==0.3.1 ppft==1.7.6.5 pre-commit==2.20.0 preshed==3.0.6 pretrainedmodels==0.7.4 prettytable==3.4.1 prometheus-client==0.14.1 prompt-toolkit==3.0.31 property-cached==1.6.4 prophet==1.1.1 protobuf==3.12.4 psutil==5.9.1 ptyprocess==0.7.0 pure-eval==0.2.2 py==1.10.0 py4j==0.10.9.5 pyaml==21.10.1 pyarrow==9.0.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 pycairo==1.20.1 pycodestyle==2.9.1 pycparser==2.21 pycups==2.0.1 pydantic==1.9.2 pyDeprecate==0.3.1 pydot==1.4.2 pygccxml==2.2.1 pygit2==1.10.0 Pygments==2.13.0 PyGObject==3.42.1 pygtrie==2.5.0 pyhdfe==0.1.0 PyJWT==2.3.0 pylatexenc==2.10 pymacaroons==0.13.0 PyMeeus==0.5.11 PyNaCl==1.5.0 pynndescent==0.5.8 Pyomo==6.4.2 PyOpenGL==3.1.5 pyparsing==2.4.7 pyperclip==1.8.2 PyQt-Qwt==1.2.2 PyQt5==5.15.6 PyQt5-sip==12.9.1 pyqtgraph==0.12.4 pyRFC3339==1.1 pyrsistent==0.18.1 pyserial==3.5 pyspark==3.3.0 python-apt==2.4.0+ubuntu1 python-dateutil==2.8.2 python-debian===0.1.43ubuntu1 python-Levenshtein==0.20.5 python-multipart==0.0.5 python-slugify==5.0.2 pythran==0.10.0 pytorch-lightning==1.5.4 pytz==2022.1 PyWavelets==1.3.0 pyxdg==0.27 PyYAML==5.4.1 pyzmq==25.0.2 qiskit==0.38.0 qiskit-aer==0.11.0 qiskit-ibmq-provider==0.19.2 qiskit-terra==0.21.2 qudida==0.0.4 rapidfuzz==2.10.2 regex==2022.7.25 reportlab==3.6.8 requests==2.28.1 requests-ntlm==1.1.0 requests-oauthlib==1.3.1 requests-toolbelt==0.9.1 responses==0.18.0 retworkx==0.11.0 rich==10.16.2 roman==3.3 rsa==4.9 ruamel.yaml==0.17.21 ruamel.yaml.clib==0.2.6 s3transfer==0.5.0 scikit-image==0.19.3 scikit-learn==1.1.2 scikit-optimize==0.9.0 scikit-posthocs==0.7.0 scikit-surprise==1.1.3 scipy==1.8.1 scmrepo==0.1.1 screen-resolution-extra==0.0.0 seaborn==0.12.0 SecretStorage==3.3.1 segmentation-models-pytorch==0.3.0 segments-ai==1.0.12 semver==2.13.0 Send2Trash==1.8.0 sentencepiece==0.1.97 setuptools-git==1.2 setuptools-scm==6.4.2 Shapely==1.8.4 shiny==0.2.7 shortuuid==1.0.9 shtab==1.5.5 simanneal==0.5.0 six==1.16.0 skorch==0.11.0 smart-open==5.2.1 smmap==5.0.0 sniffio==1.2.0 soupsieve==2.3.2.post1 spacy==3.4.1 spacy-legacy==3.0.9 spacy-loggers==1.0.3 SQLAlchemy==1.4.41 srsly==2.4.4 ssh-import-id==5.11 stack-data==0.5.1 starlette==0.20.4 statsmodels==0.13.2 stevedore==4.0.0 stopit==1.1.2 symengine==0.9.2 sympy==1.11.1 systemd-python==234 tabulate==0.8.10 tangled-up-in-unicode==0.2.0 tenacity==8.0.1 tensorboard==2.10.0 tensorboard-data-server==0.6.1 tensorboard-plugin-wit==1.8.1 terminado==0.15.0 text-unidecode==1.3 thinc==8.1.0 threadpoolctl==3.1.0 thrift==0.16.0 tifffile==2022.8.12 timm==0.4.12 tinycss2==1.1.1 tokenizers==0.12.1 toml==0.10.2 tomli==2.0.1 tomlkit==0.11.3 toolz==0.12.0 torch==1.13.0 torchaudio==0.13.0 torchmetrics==0.10.2 torchvision==0.14.0 tornado==6.2 TPOT==0.11.7 tqdm==4.64.1 traitlets==5.4.0 transformers==4.24.0 treelib==1.6.1 tweedledum==1.1.1 tweepy==4.10.1 typer==0.4.2 types-Pillow==9.2.2.2 types-requests==2.28.11.2 types-urllib3==1.26.25.1 typing_extensions==4.3.0 tzdata==2022.4 ubuntu-advantage-tools==8001 ubuntu-drivers-common==0.0.0 uc-micro-py==1.0.1 ufoLib2==0.13.1 ufw==0.36.1 ujson==5.4.0 umap-learn==0.5.3 unattended-upgrades==0.1 unicodedata2==14.0.0 update-checker==0.18.0 urllib3==1.26.12 usb-creator==0.3.7 uvicorn==0.18.2 vine==5.0.0 virtualenv==20.16.5 visions==0.7.5 voila==0.4.0 voluptuous==0.13.1 wadllib==1.3.6 wasabi==0.10.1 wcwidth==0.2.5 webencodings==0.5.1 websocket-client==1.3.3 websockets==10.3 Werkzeug==2.2.2 widgetsnbextension==3.6.1 wrapt==1.14.1 xdg==5 xgboost==1.6.2 xkit==0.0.0 xlrd==2.0.1 xxhash==3.0.0 yapf==0.32.0 yarg==0.1.9 yarl==1.8.1 zc.lockfile==2.0 zipp==1.0.0 zstandard==0.20.0 ```
Jupyter Logs ``` Visual Studio Code (1.76.2, ssh-remote, desktop) Jupyter Extension Version: 2023.2.1200692131. Python Extension Version: 2023.4.1. Workspace folder /home/florin/git/segmentation-peak4 User belongs to experiment group 'jupyterEnhancedDataViewer' User belongs to experiment group 'jupyterTest' debug 15:18:30.199: Updating cache with Python kernels , Added = , Updated = , Removed = debug 15:18:30.201: Get Custom Env Variables, Class name = ql (started execution), Arg 1: undefined, Arg 2: "RunPythonCode" debug 15:18:30.202: Start refreshing Kernel Picker (1680128310202) debug 15:18:30.204: Found 0 cached controllers info 15:18:30.214: LSP Notebooks experiment is enabled debug 15:18:30.215: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:30.215: Get Active Interpreter, Class name = Go (started execution), Arg 1: undefined debug 15:18:30.247: Get Custom Env Variables, Class name = ql, completed in 47ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode" debug 15:18:30.251: Get Jupyter Sub Paths, Class name = dp, completed in 50ms, has a truthy return value, Arg 1: "", Arg 2: "kernels", Return Value: debug 15:18:30.251: Get Jupyter Kernel Paths, Class name = dp, completed in 51ms, has a truthy return value, Arg 1: "", Return Value: debug 15:18:30.253: Get KernelSpec root path, Class name = dp, completed in 53ms, has a truthy return value, Arg 1: {"a":false,"b":null}, Return Value: , , debug 15:18:30.260: Get Active Interpreter, Class name = Go, completed in 45ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:30.260: Get Active Interpreter, Class name = Go, completed in 45ms, has a truthy return value, Arg 1: undefined, Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:30.260: interpreterPackages getPackageInformation, Class name = Zd (started execution), Arg 1: {"interpreter":{"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","external":"file:///bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}}} debug 15:18:30.260: Create activated Env, Class name = El (started execution), Arg 1: {"allowEnvironmentFetchExceptions":true,"interpreter":{"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","external":"file:///bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}}} debug 15:18:30.260: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: , Arg 3: true debug 15:18:30.261: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:30.261: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:30.261: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: "RunPythonCode" debug 15:18:30.262: Get Custom Env Variables, Class name = ql, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: "RunPythonCode" debug 15:18:30.288: Found 4 cached controllers debug 15:18:30.288: Creating 4 controllers debug 15:18:30.288: Creating notebook controller for startUsingPythonInterpreter & view jupyter-notebook (id='.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher') with name 'Python 3.10.6' debug 15:18:30.289: Creating notebook controller for startUsingPythonInterpreter & view interactive (id='.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher') with name 'Python 3.10.6' debug 15:18:30.289: Creating notebook controller for startUsingPythonInterpreter & view jupyter-notebook (id='.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher') with name 'base (Python 3.9.12)' debug 15:18:30.290: Creating notebook controller for startUsingPythonInterpreter & view interactive (id='.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher') with name 'base (Python 3.9.12)' debug 15:18:30.290: Creating notebook controller for startUsingPythonInterpreter & view jupyter-notebook (id='.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher') with name 'Python 3.10.6' debug 15:18:30.290: Creating notebook controller for startUsingPythonInterpreter & view interactive (id='.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher') with name 'Python 3.10.6' debug 15:18:30.290: Creating notebook controller for startUsingPythonInterpreter & view jupyter-notebook (id='.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher') with name 'ldm (Python 3.8.5)' debug 15:18:30.291: Creating notebook controller for startUsingPythonInterpreter & view interactive (id='.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher') with name 'ldm (Python 3.8.5)' debug 15:18:30.291: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Updated = , Removed = debug 15:18:30.291: Listing kernels for 1 interpreters (/bin/python3) debug 15:18:30.292: Listing Python kernels for Interpreter /bin/python3 debug 15:18:30.292: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:30.292: Get Jupyter Kernel Paths, Class name = dp, completed in 0ms, has a truthy return value, Arg 1: "", Return Value: debug 15:18:30.293: Get KernelSpec root path, Class name = dp, completed in 1ms, has a truthy return value, Arg 1: {"a":false,"b":null}, Return Value: , , debug 15:18:30.293: Get Active Interpreter, Class name = Go, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:30.293: Preferred Remote kernel for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb is undefined debug 15:18:30.302: Not Searching for kernels as path does not exist, /usr/share/jupyter/kernels debug 15:18:30.302: Not Searching for kernels as path does not exist, /usr/local/share/jupyter/kernels debug 15:18:30.311: Kernel for interpreter /bin/python3 is .jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher debug 15:18:30.311: Kernels for interpreter /bin/python3 are .jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher debug 15:18:30.311: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:30.319: Loading kernelspec from /home/florin/.local/share/jupyter/kernels/python3/kernel.json for debug 15:18:30.898: Conda file returned by Python Extension is conda debug 15:18:30.933: API called from ms-toolsai.vscode-jupyter-powertoys debug 15:18:30.936: Found 9 saved URIs, [{"time":1680118252094,"serverId":"7047f612cf7f1fc695a0a27f1186d0f3d22134be793d2fb089db21f3facd0ccf","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=f6aeb552-b904-4e40-a3a4-4647674d9526","isValidated":false},{"time":1680118240263,"serverId":"dcc87bdb4af9b2194613409cce3a2c7a8324227a8309fd1a925235359d141e31","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=03e4ee22-98b8-46b5-900f-d7b40c584d60","isValidated":false},{"time":1680118078804,"serverId":"dbcd1cc480550f5ec01252f107d62de132860e7aedfa8b59465984ba70a43e5c","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=607554ca-035c-4410-9672-b5e05f52d3f8","isValidated":false},{"time":1680118061624,"serverId":"23feb41c04a408c494765e690c15edb196346419bcc7526d97587c37689c3bda","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=fd028383-d057-48b1-8303-bbdef715030b","isValidated":false},{"time":1680117317680,"serverId":"2589e2ba2a162f66a7c97f2c14c968f1aee3985aa0436c57ac36175444b38c77","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=08be8459-e9d4-424c-b868-c944fa14226f","isValidated":false},{"time":1680116863252,"serverId":"f615c7b5e93ae2fa3e1550695b35718c51cf09a30312f78ed6eea59682ea454c","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=6683ee7c-d991-4e4d-8b19-a844dae10d98","isValidated":false},{"time":1680116673194,"serverId":"6231afda046dfd957c9ac54cc1528a4681b9a9528de8d22f6f308c19a45eeb55","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=96f013e5-4ca0-4a1d-aa83-b33596080682","isValidated":false},{"time":1680116647542,"serverId":"d20b898b841d3379a7ac6ccb8f67918c233e5f3cee8be840325253424ba6733c","displayName":"127.0.0.1","uri":"https://remote/?id=_builtin.jupyterServerUrlProvider&uriHandle=b7e81c45-058b-477e-a9ab-c139de225b20","isValidated":false},{"time":1677812070330,"serverId":"72b137017bcd4fc717dd5e28dc28d11b8675e0d8ce0f5763fd30aaebc4886bc2","displayName":"http://127.0.0.1:8888/?token=2d10669497ce57b31dcd0eadfe1f1d49b4d7d2c4045fcbfa","uri":"http://127.0.0.1:8888/?token=2d10669497ce57b31dcd0eadfe1f1d49b4d7d2c4045fcbfa","isValidated":true}] debug 15:18:30.936: Found 4 cached controllers debug 15:18:30.936: Creating 4 controllers debug 15:18:30.937: UniversalRemoteKernelFinder: get from cache info 15:18:30.938: Checking for server existence. debug 15:18:30.939: Checking for server usability. debug 15:18:30.939: Starting notebook server. info 15:18:30.939: Connecting to server debug 15:18:30.939: Connecting to process server info 15:18:30.939: Connecting remote server kernel http://127.0.0.1:8888/ Connecting to Jupyter server at http://127.0.0.1:8888/ info 15:18:30.940: Creating server with url : http://127.0.0.1:8888/ debug 15:18:30.954: Connection complete server info 15:18:30.954: Server started. info 15:18:30.954: Creating server with url : http://127.0.0.1:8888/ error 15:18:30.967: Error fetching remote kernels: [FetchError: request to http://127.0.0.1:8888/api/kernels?1680128310955 failed, reason: connect ECONNREFUSED 127.0.0.1:8888 at ClientRequest. (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739) at ClientRequest.emit (node:events:526:28) at Socket.socketErrorListener (node:_http_client:442:9) at Socket.emit (node:events:526:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21)] debug 15:18:30.967: Disposing session manager debug 15:18:30.967: SessionManager - dispose contents manager debug 15:18:30.968: ShutdownSessionAndConnection - dispose session manager debug 15:18:30.969: Finished disposing jupyter session manager error 15:18:30.969: UniversalRemoteKernelFinder: Failed to get kernels without cache [FetchError: request to http://127.0.0.1:8888/api/kernels?1680128310955 failed, reason: connect ECONNREFUSED 127.0.0.1:8888 at ClientRequest. (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739) at ClientRequest.emit (node:events:526:28) at Socket.socketErrorListener (node:_http_client:442:9) at Socket.emit (node:events:526:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21)] debug 15:18:30.969: UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache error 15:18:30.969: SessionManager:getKernelSpecs failure: [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed. at e.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:172349) at u.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:63778) at hg.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:269825) at processTicksAndRejections (node:internal/process/task_queues:96:5) at async bg.listKernelsFromConnection (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:282210)] debug 15:18:31.147: Updating cache with Remote kernels , Added = , Updated = , Removed = warn 15:18:31.190: Failed to get activated env vars with python /bin/python3 in 929ms debug 15:18:31.191: Create ProcessService, Class name = gl (started execution), debug 15:18:31.191: Get Custom Env Variables, Class name = ql (started execution), Arg 1: undefined, Arg 2: "RunNonPythonCode" debug 15:18:31.199: Get Custom Env Variables, Class name = ql, completed in 8ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunNonPythonCode" debug 15:18:31.199: Create ProcessService, Class name = gl, completed in 8ms, has a truthy return value, info 15:18:31.210: Process Execution: > /bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");" > /bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");" debug 15:18:31.234: USER_SITE for /bin/python3 is /home/florin/.local/bin debug 15:18:31.234: Activated Env Variables, PATH value is /bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:31.234: Getting activated env variables from Python, Class name = ac, completed in 973ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:31.234: Got env vars with python /bin/python3 in 973ms with 36 variables debug 15:18:31.234: Getting activated env variables impl, Class name = ac, completed in 973ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:31.235: Getting activated env variables, Class name = ac, completed in 975ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: , Arg 3: true debug 15:18:31.235: Create activated Env, Class name = El, completed in 975ms, has a truthy return value, Arg 1: {"allowEnvironmentFetchExceptions":true,"interpreter":{"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","external":"file:///bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4","external":"file:///home/florin/git/segmentation-peak4","path":"/home/florin/git/segmentation-peak4","scheme":"file"}} info 15:18:31.247: Process Execution: > /bin/python3 -m pip list > /bin/python3 -m pip list debug 15:18:31.338: Found 4 cached controllers debug 15:18:31.338: Creating 4 controllers debug 15:18:31.338: UniversalRemoteKernelFinder: get from cache info 15:18:31.339: Checking for server existence. debug 15:18:31.339: Checking for server usability. debug 15:18:31.339: Starting notebook server. info 15:18:31.339: Connecting to server debug 15:18:31.339: Connecting to process server info 15:18:31.339: Connecting remote server kernel http://127.0.0.1:8888/ Connecting to Jupyter server at http://127.0.0.1:8888/ info 15:18:31.340: Creating server with url : http://127.0.0.1:8888/ debug 15:18:31.342: Connection complete server info 15:18:31.342: Server started. info 15:18:31.342: Creating server with url : http://127.0.0.1:8888/ error 15:18:31.352: Error fetching remote kernels: [FetchError: request to http://127.0.0.1:8888/api/kernels?1680128311343 failed, reason: connect ECONNREFUSED 127.0.0.1:8888 at ClientRequest. (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739) at ClientRequest.emit (node:events:526:28) at Socket.socketErrorListener (node:_http_client:442:9) at Socket.emit (node:events:526:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21)] debug 15:18:31.352: Disposing session manager debug 15:18:31.352: SessionManager - dispose contents manager debug 15:18:31.352: ShutdownSessionAndConnection - dispose session manager debug 15:18:31.353: Finished disposing jupyter session manager error 15:18:31.353: UniversalRemoteKernelFinder: Failed to get kernels without cache [FetchError: request to http://127.0.0.1:8888/api/kernels?1680128311343 failed, reason: connect ECONNREFUSED 127.0.0.1:8888 at ClientRequest. (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:1101739) at ClientRequest.emit (node:events:526:28) at Socket.socketErrorListener (node:_http_client:442:9) at Socket.emit (node:events:526:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21)] debug 15:18:31.353: UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache error 15:18:31.353: SessionManager:getKernelSpecs failure: [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed. at e.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:172349) at u.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:2:63778) at hg.dispose (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:269825) at processTicksAndRejections (node:internal/process/task_queues:96:5) at async bg.listKernelsFromConnection (/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/out/extension.node.js:17:282210)] debug 15:18:31.386: Updating cache with Remote kernels , Added = , Updated = , Removed = debug 15:18:31.418: Full interpreter list after refreshing (total 0ms, resolve 0ms, refresh 0ms) is length: 4, /bin/python3:undefined::/bin/python3:/bin/python3, /usr/bin/python3:undefined::/usr/bin/python3:/usr/bin/python3, /home/florin/miniconda3/bin/python:base:Conda:/home/florin/miniconda3/bin/python:/home/florin/miniconda3/bin/python, /home/florin/miniconda3/envs/ldm/bin/python:ldm:Conda:/home/florin/miniconda3/envs/ldm/bin/python:/home/florin/miniconda3/envs/ldm/bin/python debug 15:18:31.419: Python environment for /bin/python3 is /bin/python3 from Python Extension API is {"internal":{"path":"/bin/python3","id":"/bin/python3","executable":{"uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"bitness":"64-bit","sysPrefix":"/usr"},"version":{"major":3,"minor":10,"micro":6,"release":{"level":"final","serial":0},"sysVersion":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"tools":[]},"id":"/bin/python3"} and translated is {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.420: loadData after detecting changes to interpreters debug 15:18:31.420: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.420: refreshData after detecting changes to interpreters debug 15:18:31.420: Listing kernels for 2 interpreters (/bin/python3, /usr/bin/python3) debug 15:18:31.420: Listing Python kernels for Interpreter /bin/python3 debug 15:18:31.420: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.420: Listing Python kernels for Interpreter /usr/bin/python3 debug 15:18:31.420: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.421: Python environment for /usr/bin/python3 is /usr/bin/python3 from Python Extension API is {"internal":{"path":"/usr/bin/python3","id":"/usr/bin/python3","executable":{"uri":{"$mid":1,"path":"/usr/bin/python3","scheme":"file"},"bitness":"64-bit","sysPrefix":"/usr"},"version":{"major":3,"minor":10,"micro":6,"release":{"level":"final","serial":0},"sysVersion":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"tools":[]},"id":"/usr/bin/python3"} and translated is {"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/usr/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.421: Get Jupyter Kernel Paths, Class name = dp, completed in 1ms, has a truthy return value, Arg 1: "", Return Value: debug 15:18:31.421: Get KernelSpec root path, Class name = dp, completed in 1ms, has a truthy return value, Arg 1: {"a":false,"b":null}, Return Value: , , debug 15:18:31.422: Get Active Interpreter, Class name = Go, completed in 2ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.422: Get Active Interpreter, Class name = Go, completed in 2ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.422: loadData after detecting changes to interpreters debug 15:18:31.422: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.422: refreshData after detecting changes to interpreters debug 15:18:31.422: Listing kernels for 3 interpreters (/bin/python3, /usr/bin/python3, /home/florin/miniconda3/bin/python) debug 15:18:31.422: Listing Python kernels for Interpreter /bin/python3 debug 15:18:31.422: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.422: Listing Python kernels for Interpreter /usr/bin/python3 debug 15:18:31.422: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.422: Listing Python kernels for Interpreter ~/miniconda3/bin/python debug 15:18:31.422: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.422: Python environment for /home/florin/miniconda3/bin/python is /home/florin/miniconda3/bin/python from Python Extension API is {"internal":{"path":"/home/florin/miniconda3/bin/python","id":"/home/florin/miniconda3/bin/python","executable":{"uri":{"$mid":1,"path":"/home/florin/miniconda3/bin/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"/home/florin/miniconda3"},"environment":{"type":"Conda","name":"base","folderUri":{"$mid":1,"path":"/home/florin/miniconda3","scheme":"file"}},"version":{"major":3,"minor":9,"micro":12,"release":{"level":"final","serial":0},"sysVersion":"3.9.12 (main, Apr 5 2022, 06:56:58) \n[GCC 7.5.0]"},"tools":["Conda"]},"id":"/home/florin/miniconda3/bin/python"} and translated is {"id":"/home/florin/miniconda3/bin/python","sysPrefix":"/home/florin/miniconda3","envPath":{"$mid":1,"path":"/home/florin/miniconda3","scheme":"file"},"displayPath":{"$mid":1,"path":"/home/florin/miniconda3","scheme":"file"},"envName":"base","uri":{"$mid":1,"fsPath":"/home/florin/miniconda3/bin/python","path":"/home/florin/miniconda3/bin/python","scheme":"file"},"displayName":"base","envType":"Conda","version":{"major":3,"minor":9,"patch":12,"raw":"3.9.12 (main, Apr 5 2022, 06:56:58) \n[GCC 7.5.0]"}} debug 15:18:31.422: Get Jupyter Kernel Paths, Class name = dp, completed in 0ms, has a truthy return value, Arg 1: "", Return Value: debug 15:18:31.423: Get KernelSpec root path, Class name = dp, completed in 1ms, has a truthy return value, Arg 1: {"a":false,"b":null}, Return Value: , , debug 15:18:31.423: Get Active Interpreter, Class name = Go, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.423: Get Active Interpreter, Class name = Go, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.423: Get Active Interpreter, Class name = Go, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.423: loadData after detecting changes to interpreters debug 15:18:31.423: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.423: refreshData after detecting changes to interpreters debug 15:18:31.423: Listing kernels for 4 interpreters (/bin/python3, /usr/bin/python3, /home/florin/miniconda3/bin/python, /home/florin/miniconda3/envs/ldm/bin/python) debug 15:18:31.423: Listing Python kernels for Interpreter /bin/python3 debug 15:18:31.423: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.424: Listing Python kernels for Interpreter /usr/bin/python3 debug 15:18:31.424: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.424: Listing Python kernels for Interpreter ~/miniconda3/bin/python debug 15:18:31.424: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.424: Listing Python kernels for Interpreter ~/miniconda3/envs/ldm/bin/python debug 15:18:31.424: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.424: Python environment for /home/florin/miniconda3/envs/ldm/bin/python is /home/florin/miniconda3/envs/ldm/bin/python from Python Extension API is {"internal":{"path":"/home/florin/miniconda3/envs/ldm/bin/python","id":"/home/florin/miniconda3/envs/ldm/bin/python","executable":{"uri":{"$mid":1,"path":"/home/florin/miniconda3/envs/ldm/bin/python","scheme":"file"},"bitness":"64-bit","sysPrefix":"/home/florin/miniconda3/envs/ldm"},"environment":{"type":"Conda","name":"ldm","folderUri":{"$mid":1,"path":"/home/florin/miniconda3/envs/ldm","scheme":"file"}},"version":{"major":3,"minor":8,"micro":5,"release":{"level":"final","serial":0},"sysVersion":"3.8.5 (default, Sep 4 2020, 07:30:14) \n[GCC 7.3.0]"},"tools":["Conda"]},"id":"/home/florin/miniconda3/envs/ldm/bin/python"} and translated is {"id":"/home/florin/miniconda3/envs/ldm/bin/python","sysPrefix":"/home/florin/miniconda3/envs/ldm","envPath":{"$mid":1,"path":"/home/florin/miniconda3/envs/ldm","scheme":"file"},"displayPath":{"$mid":1,"path":"/home/florin/miniconda3/envs/ldm","scheme":"file"},"envName":"ldm","uri":{"$mid":1,"fsPath":"/home/florin/miniconda3/envs/ldm/bin/python","path":"/home/florin/miniconda3/envs/ldm/bin/python","scheme":"file"},"displayName":"ldm","envType":"Conda","version":{"major":3,"minor":8,"patch":5,"raw":"3.8.5 (default, Sep 4 2020, 07:30:14) \n[GCC 7.3.0]"}} debug 15:18:31.424: loadData after detecting changes to interpreters debug 15:18:31.424: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.424: refreshData after detecting changes to interpreters debug 15:18:31.424: Listing kernels for 4 interpreters (/bin/python3, /usr/bin/python3, /home/florin/miniconda3/bin/python, /home/florin/miniconda3/envs/ldm/bin/python) debug 15:18:31.424: Listing Python kernels for Interpreter /bin/python3 debug 15:18:31.424: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.424: Listing Python kernels for Interpreter /usr/bin/python3 debug 15:18:31.424: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.425: Listing Python kernels for Interpreter ~/miniconda3/bin/python debug 15:18:31.425: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.425: Listing Python kernels for Interpreter ~/miniconda3/envs/ldm/bin/python debug 15:18:31.425: Get Active Interpreter, Class name = Go (started execution), Arg 1: "~/git/segmentation-peak4" debug 15:18:31.426: Get Jupyter Kernel Paths, Class name = dp, completed in 2ms, has a truthy return value, Arg 1: "", Return Value: debug 15:18:31.426: Get KernelSpec root path, Class name = dp, completed in 2ms, has a truthy return value, Arg 1: {"a":false,"b":null}, Return Value: , , debug 15:18:31.426: Full interpreter list is length: 4, /bin/python3::Unknown:/bin/python3, /usr/bin/python3::Unknown:/usr/bin/python3, /home/florin/miniconda3/bin/python:base:Conda:/home/florin/miniconda3/bin/python, /home/florin/miniconda3/envs/ldm/bin/python:ldm:Conda:/home/florin/miniconda3/envs/ldm/bin/python debug 15:18:31.427: Refreshed Environments debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 5ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 4ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 4ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 4ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 4ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 4ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 3ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.428: Get Active Interpreter, Class name = Go, completed in 3ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Return Value: {"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}} debug 15:18:31.431: Not Searching for kernels as path does not exist, /home/florin/miniconda3/share/jupyter/kernels debug 15:18:31.432: Not Searching for kernels as path does not exist, /home/florin/miniconda3/envs/ldm/share/jupyter/kernels debug 15:18:31.433: Kernel for interpreter /bin/python3 is .jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher debug 15:18:31.433: Kernels for interpreter /bin/python3 are .jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher debug 15:18:31.433: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.434: Kernel for interpreter /usr/bin/python3 is .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher debug 15:18:31.434: Kernels for interpreter /usr/bin/python3 are .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher debug 15:18:31.434: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.435: Kernel for interpreter /home/florin/miniconda3/bin/python is .jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher debug 15:18:31.435: Kernels for interpreter /home/florin/miniconda3/bin/python are .jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher debug 15:18:31.435: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:31.436: Kernel for interpreter /home/florin/miniconda3/envs/ldm/bin/python is .jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher debug 15:18:31.436: Kernels for interpreter /home/florin/miniconda3/envs/ldm/bin/python are .jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher debug 15:18:31.436: Updating cache with Python kernels startUsingPythonInterpreter:'.jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (interpreter id = /usr/bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd0d2e54210e171952fa0ca348e4ca6fb6d13afc85e5e16b9b1e728059f9d3f65b8./home/florin/miniconda3/python./home/florin/miniconda3/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/bin/python)', startUsingPythonInterpreter:'.jvsc74a57bd0916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1./bin/python3./bin/python3.-m#ipykernel_launcher (interpreter id = /bin/python3)', startUsingPythonInterpreter:'.jvsc74a57bd048a42282b436ca612486d589a776fbf634664298c29ce943c53aa021065c3079./home/florin/miniconda3/envs/ldm/python./home/florin/miniconda3/envs/ldm/python.-m#ipykernel_launcher (interpreter id = /home/florin/miniconda3/envs/ldm/bin/python)' , Added = , Updated = , Removed = debug 15:18:32.015: interpreterPackages getPackageInformation, Class name = Zd, completed in 1755ms, has a falsy return value, Arg 1: {"interpreter":{"id":"/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/bin/python3","path":"/bin/python3","scheme":"file"},"envName":"","uri":{"$mid":1,"fsPath":"/bin/python3","external":"file:///bin/python3","path":"/bin/python3","scheme":"file"},"displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"}}} debug 15:18:32.427: End refreshing Kernel Picker (1680128310202) debug 15:18:57.892: VSCodeNotebookController::handleExecution, Class name = Kv (started execution) debug 15:18:57.893: KernelProvider switched kernel to id = .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher debug 15:18:57.894: start the kernel, options.disableUI=true for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.895: Start Jupyter Session in kernel.ts with disableUI = true debug 15:18:57.895: Initialize notebook communications for editor /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.896: Resolving notebook UI Comms (resolve) for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.896: initialize CommonMessageCoordinator debug 15:18:57.897: Registering commtarget jupyter.widget debug 15:18:57.897: IPyWidgetMessageDispatcher.initialize debug 15:18:57.897: Attempting to determine version of IPyWidgets debug 15:18:57.899: Controller selection change completed debug 15:18:57.899: Waiting for IPyWidgets version debug 15:18:57.899: Waiting for IPyWidgets version promise debug 15:18:57.900: Storing Preferred remote kernel for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb is undefined debug 15:18:57.901: interpreterPackages getPackageInformation, Class name = Zd (started execution), Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:57.901: Create activated Env, Class name = El (started execution), Arg 1: {"allowEnvironmentFetchExceptions":true,"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:57.901: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: , Arg 3: true debug 15:18:57.901: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:57.901: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:57.901: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: "RunPythonCode" debug 15:18:57.901: Execute Cell 0 /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.902: start the kernel, options.disableUI=false for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.902: Execute Cell 1 /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.902: start the kernel, options.disableUI=false for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:57.902: Get Custom Env Variables, Class name = ql, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: "RunPythonCode" info 15:18:57.903: Starting Jupyter Session startUsingPythonInterpreter, .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher (Python Path: , EnvType: Unknown, EnvName: '', Version: 3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]) for '/home/florin/git/segmentation-peak4/click_gui_crash.ipynb' (disableUI=false) debug 15:18:57.904: Creating raw notebook for resource '/home/florin/git/segmentation-peak4/click_gui_crash.ipynb' debug 15:18:57.904: Computing working directory for resource '/home/florin/git/segmentation-peak4/click_gui_crash.ipynb' debug 15:18:57.906: Kernel Launcher. launch, Class name = Vp (started execution), Arg 1: {"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher","kernelSpec":{"specFile":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/temp/jupyter/kernels/pythonjvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6/kernel.json","interpreterPath":"/usr/bin/python3","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3","metadata":{"interpreter":{"path":"/usr/bin/python3"}},"env":{}},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":"/usr/bin/python3","envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"path":"/usr/bin/python3"},"kind":"startUsingPythonInterpreter"}, Arg 2: 60000, Arg 3: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 4: "~/git/segmentation-peak4", Arg 5: {"a":false,"b":null} debug 15:18:57.906: Create activated Env, Class name = El (started execution), Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"}} debug 15:18:57.906: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: undefined debug 15:18:57.906: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.906: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.906: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:57.924: Get Custom Env Variables, Class name = ql, completed in 18ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:57.930: Launching kernel in kernelProcess.ts, Class name = Fp (started execution), Arg 1: "~/git/segmentation-peak4", Arg 2: "" debug 15:18:57.930: Create activated Env, Class name = El (started execution), Arg 1: {"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:57.930: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: undefined debug 15:18:57.930: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.930: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.930: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:57.930: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: false debug 15:18:57.930: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.930: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:57.930: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:57.931: Get Custom Env Variables, Class name = ql, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:57.931: Get Custom Env Variables, Class name = ql, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" warn 15:18:58.385: Failed to get activated env vars with python /usr/bin/python3 in 484ms debug 15:18:58.386: Create ProcessService, Class name = gl (started execution), debug 15:18:58.386: Get Custom Env Variables, Class name = ql (started execution), Arg 1: undefined, Arg 2: "RunNonPythonCode" debug 15:18:58.386: Cached data exists getEnvironmentVariables, /home/florin/git/segmentation-peak4 debug 15:18:58.386: Get Custom Env Variables, Class name = ql, completed in 0ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunNonPythonCode" debug 15:18:58.387: Create ProcessService, Class name = gl, completed in 1ms, has a truthy return value, info 15:18:58.396: Process Execution: > /usr/bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");" > /usr/bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_SITE);print("USER_BASE_VALUE");" warn 15:18:58.398: Failed to get activated env vars with python /usr/bin/python3 in 492ms warn 15:18:58.398: Failed to get activated env vars with python /usr/bin/python3 in 468ms warn 15:18:58.398: Failed to get activated env vars with python /usr/bin/python3 in 468ms debug 15:18:58.407: USER_SITE for /usr/bin/python3 is /home/florin/.local/bin debug 15:18:58.408: Activated Env Variables, PATH value is /usr/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:58.408: Activated Env Variables, PATH value is /usr/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:58.408: Activated Env Variables, PATH value is /usr/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:58.408: Activated Env Variables, PATH value is /usr/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:58.408: Getting activated env variables from Python, Class name = ac, completed in 507ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:58.408: Got env vars with python /usr/bin/python3 in 507ms with 36 variables debug 15:18:58.408: Getting activated env variables from Python, Class name = ac, completed in 502ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.408: Got env vars with python /usr/bin/python3 in 502ms with 36 variables debug 15:18:58.408: Getting activated env variables from Python, Class name = ac, completed in 478ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.408: Got env vars with python /usr/bin/python3 in 478ms with 36 variables debug 15:18:58.408: Getting activated env variables from Python, Class name = ac, completed in 478ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.408: Got env vars with python /usr/bin/python3 in 478ms with 36 variables debug 15:18:58.408: Getting activated env variables impl, Class name = ac, completed in 507ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: debug 15:18:58.408: Getting activated env variables impl, Class name = ac, completed in 502ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.408: Getting activated env variables impl, Class name = ac, completed in 478ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.408: Getting activated env variables impl, Class name = ac, completed in 478ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.409: Getting activated env variables, Class name = ac, completed in 508ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: , Arg 3: true debug 15:18:58.409: Getting activated env variables, Class name = ac, completed in 503ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: undefined debug 15:18:58.409: Getting activated env variables, Class name = ac, completed in 479ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: undefined debug 15:18:58.409: Getting activated env variables, Class name = ac, completed in 479ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: false debug 15:18:58.409: Create activated Env, Class name = El, completed in 508ms, has a truthy return value, Arg 1: {"allowEnvironmentFetchExceptions":true,"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4","external":"file:///home/florin/git/segmentation-peak4","path":"/home/florin/git/segmentation-peak4","scheme":"file"}} info 15:18:58.416: Process Execution: > /usr/bin/python3 -m pip list > /usr/bin/python3 -m pip list debug 15:18:58.417: Create activated Env, Class name = El, completed in 511ms, has a truthy return value, Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"}} info 15:18:58.425: Process Execution: > /usr/bin/python3 -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)" > /usr/bin/python3 -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)" debug 15:18:58.425: Create activated Env, Class name = El, completed in 495ms, has a truthy return value, Arg 1: {"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} info 15:18:58.434: Process Execution: > /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"59ab508a-2eda-4f94-bbf5-dbfc5c405082" --shell=9002 --transport="tcp" --iopub=9004 --f=/home/florin/.local/share/jupyter/runtime/kernel-v2-5331X5mup37zmhDZ.json > /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"59ab508a-2eda-4f94-bbf5-dbfc5c405082" --shell=9002 --transport="tcp" --iopub=9004 --f=/home/florin/.local/share/jupyter/runtime/kernel-v2-5331X5mup37zmhDZ.json info 15:18:58.434: Process Execution: cwd: ~/git/segmentation-peak4 cwd: ~/git/segmentation-peak4 debug 15:18:58.435: Launching kernel in kernelProcess.ts, Class name = Fp, completed in 505ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4", Arg 2: "" info 15:18:58.511: ipykernel version & path 6.16.0, ~/.local/lib/python3.10/site-packages/ipykernel/__init__.py for /usr/bin/python3 debug 15:18:58.815: KernelProcess error: /home/florin/.local/lib/python3.10/site-packages/traitlets/traitlets.py:2412: FutureWarning: Supporting extra quotes around strings is deprecated in traitlets 5.0. You can use 'hmac-sha256' instead of '"hmac-sha256"' if you require traitlets >=5. warn( /home/florin/.local/lib/python3.10/site-packages/traitlets/traitlets.py:2366: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use '59ab508a-2eda-4f94-bbf5-dbfc5c405082' instead of 'b"59ab508a-2eda-4f94-bbf5-dbfc5c405082"'. warn( debug 15:18:58.821: KernelProcess output: NOTE: When using the `ipython kernel` entry point, Ctrl-C will not work. To exit, you will have to explicitly quit this process, by either sending "quit" from a client, or using Ctrl-\ in UNIX-like environments. To read more about this, see https://github.com/ipython/ipython/issues/2049 To connect another client to this kernel, use: --existing kernel-v2-5331X5mup37zmhDZ.json debug 15:18:58.821: Kernel Output: To connect another client to this kernel, use: --existing kernel-v2-5331X5mup37zmhDZ.json debug 15:18:58.845: Kernel Launcher. launch, Class name = Vp, completed in 940ms, has a truthy return value, Arg 1: {"id":".jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher","kernelSpec":{"specFile":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/temp/jupyter/kernels/pythonjvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6/kernel.json","interpreterPath":"/usr/bin/python3","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3","metadata":{"interpreter":{"path":"/usr/bin/python3"}},"env":{}},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":"/usr/bin/python3","envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"path":"/usr/bin/python3"},"kind":"startUsingPythonInterpreter"}, Arg 2: 60000, Arg 3: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 4: "~/git/segmentation-peak4", Arg 5: debug 15:18:58.849: Waiting for Raw Session to be ready in postStartRawSession debug 15:18:58.849: Waiting for Raw session to be ready, currently connected debug 15:18:58.849: Raw session connected debug 15:18:58.849: Waiting for Raw session to be ready for 30s debug 15:18:58.849: Waited for Raw session to be ready & got connected debug 15:18:58.849: Successfully waited for Raw Session to be ready in postStartRawSession debug 15:18:58.849: Kernel status before requesting kernel info and after ready is unknown debug 15:18:58.849: Sending request for kernelinfo debug 15:18:58.853: Got response for requestKernelInfo debug 15:18:58.853: Successfully compelted postStartRawSession info 15:18:58.853: Started Kernel Python 3.10.6 (pid: 5550) debug 15:18:58.854: Started running kernel initialization for /home/florin/git/segmentation-peak4/click_gui_crash.ipynb debug 15:18:58.854: Executing silently Code (idle) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy debug 15:18:58.879: Executing silently Code (completed) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy with 1 output(s) debug 15:18:58.879: Determined IPyKernel Version [{"name":"stdout","text":"e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPyWidgets:7.7.2\n","output_type":"stream"}] debug 15:18:58.879: Determined IPyKernel Version and event fired 7 debug 15:18:58.879: Version of IPyWidgets 7 determined after 0.982s debug 15:18:58.880: Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\n%cd "//home/florin/git/segmentation-peak4"\nif _VSC debug 15:18:58.889: Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\n%cd "//home/florin/git/segmentation-peak4"\nif _VSC with 1 output(s) debug 15:18:58.889: Not executing startup session: Object, code: debug 15:18:58.889: Requesting Kernel info debug 15:18:58.889: Got Kernel info debug 15:18:58.889: End running kernel initialization, now waiting for idle debug 15:18:58.890: Waiting for 60000ms idle on (kernel): 57c2f300-b352-4291-9196-9e9b4a97fc34 -> idle debug 15:18:58.890: Finished waiting for idle on (kernel): 57c2f300-b352-4291-9196-9e9b4a97fc34 -> idle debug 15:18:58.890: End running kernel initialization, session is idle debug 15:18:58.891: IPyWidgetScriptSource.initialize debug 15:18:58.891: IPyWidgetMessageDispatcher.initialize debug 15:18:58.892: getDataDirsImpl, Class name = dp (started execution), Arg 1: {"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:58.892: Get Custom Env Variables, Class name = ql (started execution), Arg 1: undefined, Arg 2: "RunPythonCode" debug 15:18:58.892: Get Custom Env Variables, Class name = ql, completed in 0ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode" debug 15:18:58.893: Get Jupyter Sub Paths, Class name = dp, completed in 1ms, has a truthy return value, Arg 1: undefined, Return Value: debug 15:18:58.893: Get Jupyter Paths, Class name = dp, completed in 1ms, has a truthy return value, , Return Value: debug 15:18:58.893: Create activated Env, Class name = El (started execution), Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"allowEnvironmentFetchExceptions":true} debug 15:18:58.893: Getting activated env variables, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: true debug 15:18:58.893: Getting activated env variables impl, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.893: Getting activated env variables from Python, Class name = ac (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:58.893: Get Custom Env Variables, Class name = ql (started execution), Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:58.894: Get Custom Env Variables, Class name = ql, completed in 1ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: "RunPythonCode" debug 15:18:58.894: Start Jupyter Session in kernel.ts with disableUI = false debug 15:18:58.894: Start Jupyter Session in kernel.ts with disableUI = false debug 15:18:58.896: Start cell 0 execution @ 1680128338896 warn 15:18:59.024: Failed to get activated env vars with python /usr/bin/python3 in 131ms debug 15:18:59.025: Activated Env Variables, PATH value is /usr/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin:/home/florin/.vscode-server/bin/ee2b180d582a7f601fa6ecfdad8d9fd269ab1884/bin/remote-cli:/home/florin/.local/bin:/home/florin/bin:/home/florin/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/florin/.local/bin and Path value is undefined debug 15:18:59.025: Getting activated env variables from Python, Class name = ac, completed in 132ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:59.025: Got env vars with python /usr/bin/python3 in 132ms with 36 variables debug 15:18:59.025: Getting activated env variables impl, Class name = ac, completed in 132ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: debug 15:18:59.025: Getting activated env variables, Class name = ac, completed in 132ms, has a truthy return value, Arg 1: "~/git/segmentation-peak4/click_gui_crash.ipynb", Arg 2: , Arg 3: true debug 15:18:59.025: Create activated Env, Class name = El, completed in 132ms, has a truthy return value, Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}},"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"allowEnvironmentFetchExceptions":true} info 15:18:59.037: Process Execution: > /usr/bin/python3 ~/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/pythonFiles/printJupyterDataDir.py > /usr/bin/python3 ~/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/pythonFiles/printJupyterDataDir.py debug 15:18:59.055: getDataDirsImpl, Class name = dp, completed in 163ms, has a truthy return value, Arg 1: {"resource":{"$mid":1,"fsPath":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","external":"file:///home/florin/git/segmentation-peak4/click_gui_crash.ipynb","path":"/home/florin/git/segmentation-peak4/click_gui_crash.ipynb","scheme":"file"},"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:59.229: interpreterPackages getPackageInformation, Class name = Zd, completed in 1329ms, has a falsy return value, Arg 1: {"interpreter":{"id":"/usr/bin/python3","sysPrefix":"/usr","displayPath":{"$mid":1,"fsPath":"/usr/bin/python3","path":"/usr/bin/python3","scheme":"file"},"envName":"","displayName":"","envType":"Unknown","version":{"major":3,"minor":10,"patch":6,"raw":"3.10.6 (main, Mar 10 2023, 10:55:28) [GCC 11.3.0]"},"uri":{"$mid":1,"fsPath":"/usr/bin/python3","external":"file:///usr/bin/python3","path":"/usr/bin/python3","scheme":"file"}}} debug 15:18:59.479: End cell 0 execution @ 1680128339479, started @ 1680128338896, elapsed time = 0.583s debug 15:18:59.480: Start cell 1 execution @ 1680128339480 debug 15:18:59.480: Cell 0 executed with state Success debug 15:18:59.579: End cell 1 execution @ undefined, started @ 1680128339480, elapsed time = -1680128339.48s debug 15:18:59.580: Cell 1 executed with state Idle debug 15:18:59.580: VSCodeNotebookController::handleExecution, Class name = Kv, completed in 1688ms, has a falsy return value debug 15:18:59.623: IPyWidgetMessageDispatcher.initialize debug 15:18:59.623: Web view is ready to receive widget messages debug 15:18:59.627: Widget Entry points = [{"uri":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/extension.js","scheme":"file"},"widgetFolderName":"catboost-widget"},{"uri":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-js-widgets/extension.js","scheme":"file"},"widgetFolderName":"jupyter-js-widgets"},{"uri":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/extension.js","scheme":"file"},"widgetFolderName":"jupyter-matplotlib"},{"uri":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/extension.js","scheme":"file"},"widgetFolderName":"jupyterlab-plotly"},{"uri":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/voila/extension.js","scheme":"file"},"widgetFolderName":"voila"}] debug 15:18:59.627: Widget baseUrl = file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter debug 15:18:59.630: Extracted require.config entry for jupyterlab-plotly from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/extension.js for file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter is {"jupyterlab-plotly":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/index","scheme":"file"}} debug 15:18:59.631: Extracted require.config entry for catboost-widget from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/extension.js for file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter is {"catboost-widget":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/index","scheme":"file"}} warn 15:18:59.632: Failed to extract require.config from widget for voila from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/voila/extension.js debug 15:18:59.632: Extracted require.config entry for voila from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/voila/extension.js for file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter is undefined debug 15:18:59.633: Extracted require.config entry for jupyter-matplotlib from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/extension.js for file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter is {"jupyter-matplotlib":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/index","scheme":"file"}} debug 15:18:59.639: Extracted require.config entry for jupyter-js-widgets from /home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-js-widgets/extension.js for file:///home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter is {"@jupyter-widgets/controls":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-js-widgets/extension","scheme":"file"},"@jupyter-widgets/base":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-js-widgets/extension","scheme":"file"},"@jupyter-widgets/output":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-js-widgets/extension","scheme":"file"}} debug 15:18:59.640: Widget config = {"catboost-widget":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/index","scheme":"file"},"jupyter-matplotlib":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/index","scheme":"file"},"jupyterlab-plotly":{"$mid":1,"path":"/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/index","scheme":"file"}} debug 15:18:59.644: Version of IPyWidgets 7 determined after 0.002s debug 15:18:59.652: Widget Message: Received IPyWidgets_kernelOptions in ScriptManager debug 15:18:59.667: Widget Message: Received IPyWidgetMessages.IPyWidgets_kernelOptions debug 15:18:59.667: IPyWidgetMessageDispatcher.initialize debug 15:18:59.667: IPyWidgetMessageDispatcher.initialize debug 15:18:59.685: Widget Message: data-base-url set to https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter debug 15:18:59.685: Widget Message: WidgetManager: Loading class FigureModel:jupyterlab-plotly:^5.10.0 debug 15:18:59.685: Widget Message: Fetch IPyWidget source for jupyterlab-plotly info 15:18:59.685: Fetch Script for {"moduleName":"jupyterlab-plotly","moduleVersion":"^5.10.0","requestId":"jupyterlab-plotly:^5.10.0:1680128339127"} info 15:18:59.685: Fetch Script for jupyterlab-plotly debug 15:18:59.687: Widget Message: Received IPyWidgets_kernelOptions in ScriptManager debug 15:18:59.687: Widget Message: Received IPyWidgetMessages.IPyWidgets_kernelOptions debug 15:18:59.687: Widget Message: data-base-url set to https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter info 15:18:59.687: Searching for Widget Script jupyterlab-plotly#^5.10.0 using cdns debug 15:18:59.689: Widget Message: Received IPyWidget scripts [{"moduleName":"catboost-widget","scriptUri":"https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/index","source":"local"}] debug 15:18:59.689: Widget Message: Source for IPyWidget catboost-widget found in local @ https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/index. debug 15:18:59.690: Widget Message: Registering IPyWidget catboost-widget found in https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/catboost-widget/index. debug 15:18:59.690: Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-matplotlib","scriptUri":"https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/index","source":"local"}] debug 15:18:59.690: Widget Message: Source for IPyWidget jupyter-matplotlib found in local @ https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/index. debug 15:18:59.691: Widget Message: Registering IPyWidget jupyter-matplotlib found in https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyter-matplotlib/index. debug 15:18:59.691: Widget Message: Received IPyWidget scripts [{"moduleName":"jupyterlab-plotly","scriptUri":"https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/index","source":"local"}] debug 15:18:59.691: Widget Message: Source for IPyWidget jupyterlab-plotly found in local @ https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/index. debug 15:18:59.691: Widget Message: Registering IPyWidget jupyterlab-plotly found in https://vscode-remote%2Bssh-002dremote-002b192-002e168-002e1-002e20.vscode-resource.vscode-cdn.net/home/florin/.vscode-server/extensions/ms-toolsai.jupyter-2023.2.1200692131/tmp/scripts/31287cf9e2e18afa40154cd18cb1e57335b009e6bfea9730c6beb09c8a1ec8b0/jupyter/nbextensions/jupyterlab-plotly/index. debug 15:18:59.691: Widget Message: Waiting for model to be available before rendering it 865688fe887746a791c43d1bc78f0353 debug 15:19:00.610: Widget Message: Received display data message 865688fe887746a791c43d1bc78f0353 debug 15:19:00.610: Widget Message: WidgetManager: Loading class FigureView:jupyterlab-plotly:^5.10.0 info 15:19:05.106: Widget Script jupyterlab-plotly#^5.10.0 found at URI: https://cdn.jsdelivr.net/npm/jupyterlab-plotly@5.10.0/dist/index.js info 15:19:05.106: Script source for Widget jupyterlab-plotly@^5.10.0 was found from source cdn info 15:19:05.106: Script for jupyterlab-plotly, is https://cdn.jsdelivr.net/npm/jupyterlab-plotly@5.10.0/dist/index.js from cdn debug 15:19:05.136: Widget Message: Received IPyWidget scripts [{"moduleName":"jupyterlab-plotly","scriptUri":"https://cdn.jsdelivr.net/npm/jupyterlab-plotly@5.10.0/dist/index.js","source":"cdn"}] debug 15:19:05.136: Widget Message: Source for IPyWidget jupyterlab-plotly found in cdn @ https://cdn.jsdelivr.net/npm/jupyterlab-plotly@5.10.0/dist/index.js. debug 15:19:05.136: Widget Message: Registering IPyWidget jupyterlab-plotly found in https://cdn.jsdelivr.net/npm/jupyterlab-plotly@5.10.0/dist/index.js. ```
DonJayamanne commented 1 year ago

Thanks, will try this at my end.

FlorinAndrei commented 1 year ago

After upgrading to the latest VSCode 1.77.0, the latest VSCode extensions, and Plotly 5.14.0, the code example does not crash anymore in VSCode when running remotely over SSH.

However, mouse click events are not captured properly by the Plotly FigureWidget() in there. The widget has the ability to track mouse events, and can capture the coordinates of clicks. This works fine in the original Jupyter server with Chrome, it does not work at all in VSCode. I may be able to put together a proof of concept.

How do you want to proceed? Keep this issue open, or open another issue for the mouse clicks?

DonJayamanne commented 1 year ago

er upgrading to the latest VSCode 1.77.0, the latest VSCode extensions, and Plotly 5.14.0, the code example does not crash anymore in VSCode when running remotely over SSH.

Thank you for getting back with an update.

Keep this issue open, or open another issue for the mouse clicks?

Very sorry for missing this update, please could you file a seperate issue.