Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C# kernel does not work #13320

Closed
Martin-Molinero opened this issue Oct 26, 2022 · 4 comments
Closed

C# kernel does not work #13320

Martin-Molinero opened this issue Oct 26, 2022 · 4 comments
Labels
bug status:Needs Info status:Needs Triage Applied to new issues that need triage

Comments

@Martin-Molinero
Copy link

Description

  • C# kernels die / do not work, python works perfect, so not sure if this is a dotnet interactive or jupyterlab bug.
    image

Reproduce

FROM jupyter/datascience-notebook:lab-3.5.0

USER root

# Install dotnet 6 sdk & runtime
RUN apt-get update && apt-get install -y dotnet6 && \
    apt-get clean && apt-get autoclean && apt-get autoremove --purge -y && rm -rf /var/lib/apt/lists/*

# Install .NET Interactive to support C# in Jupyter notebooks
ENV PATH="$PATH:/home/jovyan/.dotnet/tools"

USER 1000

RUN dotnet tool install -g --no-cache --version 1.0.350406 --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive && \
     dotnet interactive jupyter install
  • docker build -t testjupyter - < Dockerfile
  • docker run -it -p 8888:8888 testjupyter start.sh "jupyter" "lab" "--log-level=DEBUG"

Expected behavior

Being able to run C# kernels using jupyter lab

Context

  • Operating System and version: jupyter/datascience-notebook:lab-3.5.0
  • Browser and version: Doesn't matter, tested firefox/chrome
  • JupyterLab version: tested multiple
Troubleshoot Output
Too long, hit the limit on GH
Command Line Output
Entered start.sh with args: jupyter lab --log-level=DEBUG
Executing the command: jupyter lab --log-level=DEBUG
[D 2022-10-26 15:11:47.716 ServerApp] Searching ['/home/jovyan', '/home/jovyan/.jupyter', '/home/jovyan/.local/etc/jupyter', '/opt/conda/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files
[D 2022-10-26 15:11:47.716 ServerApp] Looking for jupyter_config in /etc/jupyter
[D 2022-10-26 15:11:47.716 ServerApp] Looking for jupyter_config in /usr/local/etc/jupyter
[D 2022-10-26 15:11:47.716 ServerApp] Looking for jupyter_config in /opt/conda/etc/jupyter
[D 2022-10-26 15:11:47.716 ServerApp] Looking for jupyter_config in /home/jovyan/.local/etc/jupyter
[D 2022-10-26 15:11:47.717 ServerApp] Looking for jupyter_config in /home/jovyan/.jupyter
[D 2022-10-26 15:11:47.717 ServerApp] Looking for jupyter_config in /home/jovyan
[D 2022-10-26 15:11:47.718 ServerApp] Looking for jupyter_server_config in /etc/jupyter
[D 2022-10-26 15:11:47.718 ServerApp] Loaded config file: /etc/jupyter/jupyter_server_config.py
[D 2022-10-26 15:11:47.719 ServerApp] Looking for jupyter_server_config in /usr/local/etc/jupyter
[D 2022-10-26 15:11:47.719 ServerApp] Looking for jupyter_server_config in /opt/conda/etc/jupyter
[D 2022-10-26 15:11:47.719 ServerApp] Looking for jupyter_server_config in /home/jovyan/.local/etc/jupyter
[D 2022-10-26 15:11:47.719 ServerApp] Looking for jupyter_server_config in /home/jovyan/.jupyter
[D 2022-10-26 15:11:47.719 ServerApp] Looking for jupyter_server_config in /home/jovyan
[D 2022-10-26 15:11:47.722 ServerApp] Paths used for configuration of jupyter_server_config:
        /etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:47.722 ServerApp] Paths used for configuration of jupyter_server_config:
        /usr/local/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:47.722 ServerApp] Paths used for configuration of jupyter_server_config:
        /opt/conda/etc/jupyter/jupyter_server_config.d/jupyterlab.json
        /opt/conda/etc/jupyter/jupyter_server_config.d/nbclassic.json
        /opt/conda/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:47.723 ServerApp] Paths used for configuration of jupyter_server_config:
        /home/jovyan/.local/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:47.723 ServerApp] Paths used for configuration of jupyter_server_config:
        /home/jovyan/.jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:47.724 ServerApp] Paths used for configuration of jupyter_server_config:
        /home/jovyan/jupyter_server_config.json
[I 2022-10-26 15:11:47.739 ServerApp] jupyterlab | extension was successfully linked.
[W 2022-10-26 15:11:47.743 NotebookApp] 'ip' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-26 15:11:47.743 NotebookApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-26 15:11:47.743 NotebookApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[I 2022-10-26 15:11:47.749 ServerApp] nbclassic | extension was successfully linked.
[D 2022-10-26 15:11:47.752 ServerApp] Config changed: {'InlineBackend': {'figure_formats': {'jpeg', 'pdf', 'png', 'svg'}}, 'FileContentsManager': {'delete_to_trash': False}, 'NotebookApp': {'open_browser': False}, 'ServerApp': {'ip': '0.0.0.0', 'port': 8888, 'log_level': 'DEBUG', 'open_browser': False, 'jpserver_extensions': }}
[I 2022-10-26 15:11:47.760 ServerApp] Writing Jupyter server cookie secret to /home/jovyan/.local/share/jupyter/runtime/jupyter_cookie_secret
[I 2022-10-26 15:11:47.770 LabApp] JupyterLab extension loaded from /opt/conda/lib/python3.10/site-packages/jupyterlab
[I 2022-10-26 15:11:47.770 LabApp] JupyterLab application directory is /opt/conda/share/jupyter/lab
[I 2022-10-26 15:11:47.774 ServerApp] jupyterlab | extension was successfully loaded.
[I 2022-10-26 15:11:47.777 ServerApp] nbclassic | extension was successfully loaded.
[I 2022-10-26 15:11:47.777 ServerApp] Serving notebooks from local directory: /home/jovyan
[I 2022-10-26 15:11:47.777 ServerApp] Jupyter Server 1.21.0 is running at:
[I 2022-10-26 15:11:47.777 ServerApp] http://f6af0b2d298d:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031
[I 2022-10-26 15:11:47.777 ServerApp]  or http://127.0.0.1:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031
[I 2022-10-26 15:11:47.777 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2022-10-26 15:11:47.780 ServerApp]
To access the server, open this file in a browser:
    file:///home/jovyan/.local/share/jupyter/runtime/jpserver-7-open.html
Or copy and paste one of these URLs:
    http://f6af0b2d298d:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031
 or http://127.0.0.1:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031

[W 2022-10-26 15:11:48.319 ServerApp] Clearing invalid/expired login cookie username-127-0-0-1-8888
[W 2022-10-26 15:11:48.320 ServerApp] wrote error: 'Forbidden'
[W 2022-10-26 15:11:48.320 ServerApp] 403 GET /api/kernels/e9d185b6-0cb3-4458-95ee-b434d18aaa2d?1666797108313 (172.17.0.1) 1.96ms referer=http://127.0.0.1:8888/lab/tree/Untitled2.ipynb
[W 2022-10-26 15:11:48.329 ServerApp] wrote error: 'Forbidden'
[W 2022-10-26 15:11:48.329 ServerApp] 403 GET /api/kernels?1666797108325 (172.17.0.1) 1.15ms referer=http://127.0.0.1:8888/lab/tree/Untitled2.ipynb
[W 2022-10-26 15:11:49.124 ServerApp] wrote error: 'Forbidden'
[W 2022-10-26 15:11:49.125 ServerApp] 403 GET /api/kernels/f68040bd-e1b9-41b3-8699-c8b7e6dce363?1666797109121 (172.17.0.1) 0.91ms referer=http://127.0.0.1:8888/lab/tree/Untitled2.ipynb
[W 2022-10-26 15:11:49.132 ServerApp] wrote error: 'Forbidden'
[W 2022-10-26 15:11:49.133 ServerApp] 403 GET /api/kernels?1666797109129 (172.17.0.1) 0.94ms referer=http://127.0.0.1:8888/lab/tree/Untitled2.ipynb
^C[I 2022-10-26 15:11:52.710 ServerApp] interrupted
Serving notebooks from local directory: /home/jovyan
0 active kernels
Jupyter Server 1.21.0 is running at:
http://f6af0b2d298d:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031
or http://127.0.0.1:8888/lab?token=6f1d307427bedc9a17a84419aa9e7a8c02824898b9f27031
Shutdown this Jupyter server (y/[n])? y
[C 2022-10-26 15:11:53.709 ServerApp] Shutdown confirmed
[I 2022-10-26 15:11:53.709 ServerApp] Shutting down 2 extensions
[D 2022-10-26 15:11:53.709 ServerApp] jupyterlab | extension app 'lab' stopping
[D 2022-10-26 15:11:53.709 ServerApp] jupyterlab | extension app 'lab' stopped
[D 2022-10-26 15:11:53.710 ServerApp] nbclassic | extension app 'nbclassic' stopping
[D 2022-10-26 15:11:53.710 ServerApp] nbclassic | extension app 'nbclassic' stopped
[I 2022-10-26 15:11:53.710 ServerApp] Shutting down 0 terminals

D:\QuantConnect\MyLean\Lean>docker run -it -p 8888:8888 testhubresearch start.sh "jupyter" "lab" "--log-level=DEBUG"
Entered start.sh with args: jupyter lab --log-level=DEBUG
Executing the command: jupyter lab --log-level=DEBUG
[D 2022-10-26 15:11:59.825 ServerApp] Searching ['/home/jovyan', '/home/jovyan/.jupyter', '/home/jovyan/.local/etc/jupyter', '/opt/conda/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /etc/jupyter
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /usr/local/etc/jupyter
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /opt/conda/etc/jupyter
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /home/jovyan/.local/etc/jupyter
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /home/jovyan/.jupyter
[D 2022-10-26 15:11:59.825 ServerApp] Looking for jupyter_config in /home/jovyan
[D 2022-10-26 15:11:59.827 ServerApp] Looking for jupyter_server_config in /etc/jupyter
[D 2022-10-26 15:11:59.827 ServerApp] Loaded config file: /etc/jupyter/jupyter_server_config.py
[D 2022-10-26 15:11:59.828 ServerApp] Looking for jupyter_server_config in /usr/local/etc/jupyter
[D 2022-10-26 15:11:59.828 ServerApp] Looking for jupyter_server_config in /opt/conda/etc/jupyter
[D 2022-10-26 15:11:59.828 ServerApp] Looking for jupyter_server_config in /home/jovyan/.local/etc/jupyter
[D 2022-10-26 15:11:59.828 ServerApp] Looking for jupyter_server_config in /home/jovyan/.jupyter
[D 2022-10-26 15:11:59.828 ServerApp] Looking for jupyter_server_config in /home/jovyan
[D 2022-10-26 15:11:59.831 ServerApp] Paths used for configuration of jupyter_server_config:
/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:59.831 ServerApp] Paths used for configuration of jupyter_server_config:
/usr/local/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:59.831 ServerApp] Paths used for configuration of jupyter_server_config:
/opt/conda/etc/jupyter/jupyter_server_config.d/jupyterlab.json
/opt/conda/etc/jupyter/jupyter_server_config.d/nbclassic.json
/opt/conda/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:59.832 ServerApp] Paths used for configuration of jupyter_server_config:
/home/jovyan/.local/etc/jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:59.832 ServerApp] Paths used for configuration of jupyter_server_config:
/home/jovyan/.jupyter/jupyter_server_config.json
[D 2022-10-26 15:11:59.833 ServerApp] Paths used for configuration of jupyter_server_config:
/home/jovyan/jupyter_server_config.json
[I 2022-10-26 15:11:59.846 ServerApp] jupyterlab | extension was successfully linked.
[W 2022-10-26 15:11:59.850 NotebookApp] 'ip' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-26 15:11:59.850 NotebookApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-26 15:11:59.850 NotebookApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[I 2022-10-26 15:11:59.857 ServerApp] nbclassic | extension was successfully linked.
[D 2022-10-26 15:11:59.858 ServerApp] Config changed: {'InlineBackend': {'figure_formats': {'svg', 'jpeg', 'png', 'pdf'}}, 'FileContentsManager': {'delete_to_trash': False}, 'NotebookApp': {'open_browser': False}, 'ServerApp': {'ip': '0.0.0.0', 'port': 8888, 'log_level': 'DEBUG', 'open_browser': False, 'jpserver_extensions': <LazyConfigValue value={'jupyterlab': True, 'nbclassic': True}>}}
[I 2022-10-26 15:11:59.864 ServerApp] Writing Jupyter server cookie secret to /home/jovyan/.local/share/jupyter/runtime/jupyter_cookie_secret
[I 2022-10-26 15:11:59.874 LabApp] JupyterLab extension loaded from /opt/conda/lib/python3.10/site-packages/jupyterlab
[I 2022-10-26 15:11:59.874 LabApp] JupyterLab application directory is /opt/conda/share/jupyter/lab
[I 2022-10-26 15:11:59.877 ServerApp] jupyterlab | extension was successfully loaded.
[I 2022-10-26 15:11:59.880 ServerApp] nbclassic | extension was successfully loaded.
[I 2022-10-26 15:11:59.881 ServerApp] Serving notebooks from local directory: /home/jovyan
[I 2022-10-26 15:11:59.881 ServerApp] Jupyter Server 1.21.0 is running at:
[I 2022-10-26 15:11:59.881 ServerApp] http://8625965541eb:8888/lab?token=5680d174255071421e1c249252ca5b8340db7cacb97cefda
[I 2022-10-26 15:11:59.881 ServerApp] or http://127.0.0.1:8888/lab?token=5680d174255071421e1c249252ca5b8340db7cacb97cefda
[I 2022-10-26 15:11:59.881 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2022-10-26 15:11:59.884 ServerApp]

To access the server, open this file in a browser:
    file:///home/jovyan/.local/share/jupyter/runtime/jpserver-7-open.html
Or copy and paste one of these URLs:
    http://8625965541eb:8888/lab?token=5680d174255071421e1c249252ca5b8340db7cacb97cefda
 or http://127.0.0.1:8888/lab?token=5680d174255071421e1c249252ca5b8340db7cacb97cefda

[D 2022-10-26 15:12:07.210 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.213 ServerApp] Paths used for configuration of page_config:
/etc/jupyter/labconfig/page_config.json
[D 2022-10-26 15:12:07.213 ServerApp] Paths used for configuration of page_config:
/usr/local/etc/jupyter/labconfig/page_config.json
[D 2022-10-26 15:12:07.214 ServerApp] Paths used for configuration of page_config:
/opt/conda/etc/jupyter/labconfig/page_config.json
[D 2022-10-26 15:12:07.215 ServerApp] Paths used for configuration of page_config:
/home/jovyan/.local/etc/jupyter/labconfig/page_config.json
[D 2022-10-26 15:12:07.215 ServerApp] Paths used for configuration of page_config:
/home/jovyan/.jupyter/labconfig/page_config.json
[D 2022-10-26 15:12:07.262 ServerApp] Path jupyter-matplotlib/static/remoteEntry.cec326f8f2959bfbc636.js served from /opt/conda/share/jupyter/labextensions/jupyter-matplotlib/static/remoteEntry.cec326f8f2959bfbc636.js
[D 2022-10-26 15:12:07.262 ServerApp] 304 GET /lab/extensions/jupyter-matplotlib/static/remoteEntry.cec326f8f2959bfbc636.js (172.17.0.1) 1.51ms
[D 2022-10-26 15:12:07.262 ServerApp] Path jupyterlab_pygments/static/remoteEntry.aa1060b2d1221f8e5688.js served from /opt/conda/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.aa1060b2d1221f8e5688.js
[D 2022-10-26 15:12:07.263 ServerApp] 304 GET /lab/extensions/jupyterlab_pygments/static/remoteEntry.aa1060b2d1221f8e5688.js (172.17.0.1) 1.55ms
[D 2022-10-26 15:12:07.264 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/remoteEntry.1116b848a6f7126bf3e9.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/remoteEntry.1116b848a6f7126bf3e9.js
[D 2022-10-26 15:12:07.265 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/remoteEntry.1116b848a6f7126bf3e9.js (172.17.0.1) 1.31ms
[D 2022-10-26 15:12:07.439 ServerApp] Path jupyterlab_pygments/static/747.8eb3ddccc7ec4987bff9.js served from /opt/conda/share/jupyter/labextensions/jupyterlab_pygments/static/747.8eb3ddccc7ec4987bff9.js
[D 2022-10-26 15:12:07.440 ServerApp] 304 GET /lab/extensions/jupyterlab_pygments/static/747.8eb3ddccc7ec4987bff9.js?v=8eb3ddccc7ec4987bff9 (172.17.0.1) 1.76ms
[D 2022-10-26 15:12:07.440 ServerApp] Path jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js served from /opt/conda/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js
[D 2022-10-26 15:12:07.441 ServerApp] 304 GET /lab/extensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js?v=1e2faa2ba0bbe59c4780 (172.17.0.1) 2.17ms
[D 2022-10-26 15:12:07.443 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/644.11f638668109f1562dd1.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/644.11f638668109f1562dd1.js
[D 2022-10-26 15:12:07.444 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/644.11f638668109f1562dd1.js?v=11f638668109f1562dd1 (172.17.0.1) 2.11ms
[D 2022-10-26 15:12:07.444 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/291.f707f721e4b3a5489ee0.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/291.f707f721e4b3a5489ee0.js
[D 2022-10-26 15:12:07.445 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/291.f707f721e4b3a5489ee0.js?v=f707f721e4b3a5489ee0 (172.17.0.1) 2.46ms
[D 2022-10-26 15:12:07.447 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/595.e3c9c115ecf5763f080b.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/595.e3c9c115ecf5763f080b.js
[D 2022-10-26 15:12:07.447 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/595.e3c9c115ecf5763f080b.js?v=e3c9c115ecf5763f080b (172.17.0.1) 1.54ms
[D 2022-10-26 15:12:07.448 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/150.3e1e5adfd821b9b96340.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/150.3e1e5adfd821b9b96340.js
[D 2022-10-26 15:12:07.449 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/150.3e1e5adfd821b9b96340.js?v=3e1e5adfd821b9b96340 (172.17.0.1) 2.33ms
[D 2022-10-26 15:12:07.449 ServerApp] Path jupyter-matplotlib/static/480.05689dae15d4ca21a7c9.js served from /opt/conda/share/jupyter/labextensions/jupyter-matplotlib/static/480.05689dae15d4ca21a7c9.js
[D 2022-10-26 15:12:07.449 ServerApp] 304 GET /lab/extensions/jupyter-matplotlib/static/480.05689dae15d4ca21a7c9.js?v=05689dae15d4ca21a7c9 (172.17.0.1) 2.04ms
[D 2022-10-26 15:12:07.451 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/113.dd66397047ecb9a605cf.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/113.dd66397047ecb9a605cf.js
[D 2022-10-26 15:12:07.452 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/113.dd66397047ecb9a605cf.js?v=dd66397047ecb9a605cf (172.17.0.1) 1.79ms
[D 2022-10-26 15:12:07.453 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/134.bcbea9feb6e7c4da7530.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/134.bcbea9feb6e7c4da7530.js
[D 2022-10-26 15:12:07.453 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/134.bcbea9feb6e7c4da7530.js?v=bcbea9feb6e7c4da7530 (172.17.0.1) 2.43ms
[D 2022-10-26 15:12:07.454 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/965.8b60ee098074f7ed452d.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/965.8b60ee098074f7ed452d.js
[D 2022-10-26 15:12:07.455 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/965.8b60ee098074f7ed452d.js?v=8b60ee098074f7ed452d (172.17.0.1) 2.63ms
[D 2022-10-26 15:12:07.457 ServerApp] Path @jupyter-widgets/jupyterlab-manager/static/699.d004d23061da64f55a9a.js served from /opt/conda/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/699.d004d23061da64f55a9a.js
[D 2022-10-26 15:12:07.457 ServerApp] 304 GET /lab/extensions/@jupyter-widgets/jupyterlab-manager/static/699.d004d23061da64f55a9a.js?v=d004d23061da64f55a9a (172.17.0.1) 3.50ms
[D 2022-10-26 15:12:07.507 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel .net-powershell in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel .net-fsharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel .net-csharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel python3 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel julia-1.8 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.665 ServerApp] Found kernel ir in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.720 ServerApp] 200 GET /api/kernelspecs?1666797127504 (172.17.0.1) 213.57ms
[D 2022-10-26 15:12:07.722 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.724 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:07.725 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:07.726 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:07.726 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:07.727 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:07.728 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.729 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.730 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.779 ServerApp] 200 GET /api/kernels?1666797127508 (172.17.0.1) 51.80ms
[D 2022-10-26 15:12:07.781 ServerApp] 200 GET /api/sessions?1666797127509 (172.17.0.1) 52.86ms
[D 2022-10-26 15:12:07.782 ServerApp] 200 GET /api/terminals?1666797127510 (172.17.0.1) 52.82ms
[D 2022-10-26 15:12:07.783 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel .net-powershell in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel .net-fsharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel .net-csharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel python3 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel julia-1.8 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.784 ServerApp] Found kernel ir in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:07.786 ServerApp] 200 GET /api/kernelspecs?1666797127734 (172.17.0.1) 3.16ms
[D 2022-10-26 15:12:08.860 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.861 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.862 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.862 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.862 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.863 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.876 ServerApp] 200 GET /lab/api/translations/en?1666797128858 (172.17.0.1) 15.94ms
[D 2022-10-26 15:12:08.883 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.888 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.889 ServerApp] 200 GET /lab/api/listings/@jupyterlab/extensionmanager-extension/listings.json?1666797128886 (172.17.0.1) 0.85ms
[D 2022-10-26 15:12:08.891 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.893 ServerApp] 200 GET /api/contents?content=1&1666797128888 (172.17.0.1) 2.19ms
[D 2022-10-26 15:12:08.906 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.908 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.908 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.909 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.910 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.910 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.913 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.915 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.915 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.916 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.917 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.917 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.923 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.925 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.925 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.926 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.926 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.927 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.928 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.929 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.930 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.930 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.931 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.931 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.932 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.933 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.933 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.934 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.934 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.935 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.935 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.936 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.937 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.938 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.938 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.939 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.942 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.943 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.944 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.944 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.945 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.945 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.959 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.961 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.962 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.962 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.963 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.963 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.975 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:08.977 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.977 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.978 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.978 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:08.979 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.017 ServerApp] 200 GET /lab/api/translations/?1666797128973 (172.17.0.1) 42.00ms
[D 2022-10-26 15:12:09.019 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.019 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.135 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.136 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.139 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.140 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.141 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.142 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.144 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.145 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.149 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.149 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.151 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.152 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.154 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.190 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.192 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.193 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.194 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.195 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.196 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.198 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.199 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.201 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.202 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.203 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.204 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.205 ServerApp] Path @jupyterlab/theme-light-extension/index.css served from /opt/conda/share/jupyter/lab/themes/@jupyterlab/theme-light-extension/index.css
[D 2022-10-26 15:12:09.207 ServerApp] 304 GET /lab/api/themes/@jupyterlab/theme-light-extension/index.css (172.17.0.1) 31.71ms
[D 2022-10-26 15:12:09.228 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.231 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.234 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.236 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.237 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.239 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.240 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.243 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.244 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.245 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.246 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.247 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.248 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.251 ServerApp] Paths used for configuration of default_setting_overrides:
/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.252 ServerApp] Paths used for configuration of default_setting_overrides:
/usr/local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.253 ServerApp] Paths used for configuration of default_setting_overrides:
/opt/conda/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.253 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.local/etc/jupyter/labconfig/default_setting_overrides.json
[D 2022-10-26 15:12:09.254 ServerApp] Paths used for configuration of default_setting_overrides:
/home/jovyan/.jupyter/labconfig/default_setting_overrides.json
[I 2022-10-26 15:12:09.492 LabApp] Build is up to date
[D 2022-10-26 15:12:09.821 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.869 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:09.886 ServerApp] 200 GET /api/contents?content=1&1666797129856 (172.17.0.1) 16.94ms
[D 2022-10-26 15:12:10.226 ServerApp] 200 GET /api/nbconvert?1666797128990 (172.17.0.1) 1207.70ms
[D 2022-10-26 15:12:10.359 ServerApp] 200 GET /api/nbconvert?1666797128992 (172.17.0.1) 1339.88ms
[D 2022-10-26 15:12:10.378 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.306 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[I 2022-10-26 15:12:11.307 ServerApp] Creating new notebook in
[D 2022-10-26 15:12:11.348 ServerApp] Saving /home/jovyan/Untitled.ipynb
[I 2022-10-26 15:12:11.369 ServerApp] Writing notebook-signing key to /home/jovyan/.local/share/jupyter/notebook_secret
[D 2022-10-26 15:12:11.382 ServerApp] 201 POST /api/contents?1666797131303 (172.17.0.1) 75.66ms
[D 2022-10-26 15:12:11.387 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.388 ServerApp] 200 GET /api/contents/Untitled.ipynb?content=0&1666797131384 (172.17.0.1) 1.58ms
[D 2022-10-26 15:12:11.389 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.391 ServerApp] 200 GET /api/contents?content=1&1666797131385 (172.17.0.1) 2.71ms
[D 2022-10-26 15:12:11.412 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.422 ServerApp] 200 GET /api/contents/Untitled.ipynb?type=notebook&content=1&1666797131408 (172.17.0.1) 10.45ms
[D 2022-10-26 15:12:11.453 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.454 ServerApp] 200 GET /api/contents/Untitled.ipynb/checkpoints?1666797131451 (172.17.0.1) 1.26ms
[D 2022-10-26 15:12:11.456 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.457 ServerApp] 200 GET /api/contents/Untitled.ipynb/checkpoints?1666797131452 (172.17.0.1) 1.61ms
[D 2022-10-26 15:12:11.461 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.462 ServerApp] 200 GET /api/contents/Untitled.ipynb/checkpoints?1666797131458 (172.17.0.1) 1.01ms
[D 2022-10-26 15:12:11.520 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.521 ServerApp] 200 GET /api/sessions?1666797131517 (172.17.0.1) 1.69ms
[D 2022-10-26 15:12:11.527 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.531 ServerApp] Instantiating kernel '.NET (C#)' with kernel provisioner: local-provisioner
[D 2022-10-26 15:12:11.534 ServerApp] Starting kernel: ['dotnet', 'interactive', 'jupyter', '--default-kernel', 'csharp', '/home/jovyan/.local/share/jupyter/runtime/kernel-f2f4c00a-8445-49be-98e9-ab4333793a31.json', '--http-port-range', '1000-3000']
[D 2022-10-26 15:12:11.537 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:11.547 ServerApp] Connecting to: tcp://127.0.0.1:35175
[I 2022-10-26 15:12:11.548 ServerApp] Kernel started: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:11.549 ServerApp] Kernel args: {'kernel_name': '.net-csharp', 'env': {'SHELL': '/bin/bash', 'HOSTNAME': '8625965541eb', 'LANGUAGE': 'en_US.UTF-8', 'NB_UID': '1000', 'JULIA_PKGDIR': '/opt/julia', 'PWD': '/home/jovyan', 'HOME': '/home/jovyan', 'LANG': 'en_US.UTF-8', 'NB_GID': '100', 'JULIA_VERSION': '1.8.2', 'XDG_CACHE_HOME': '/home/jovyan/.cache/', 'TERM': 'xterm', 'SHLVL': '0', 'CONDA_DIR': '/opt/conda', 'JULIA_DEPOT_PATH': '/opt/julia', 'NB_USER': 'jovyan', 'LC_ALL': 'en_US.UTF-8', 'PATH': '/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/jovyan/.dotnet/tools', 'DEBIAN_FRONTEND': 'noninteractive', 'JPY_SESSION_NAME': '4214ccb9-336c-40a9-a876-304f80794ea8'}, 'cwd': '/home/jovyan'}
[D 2022-10-26 15:12:11.549 ServerApp] 201 POST /api/sessions?1666797131525 (172.17.0.1) 22.31ms
[D 2022-10-26 15:12:11.570 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.570 ServerApp] 200 GET /api/sessions?1666797131567 (172.17.0.1) 0.79ms
[D 2022-10-26 15:12:11.581 ServerApp] Initializing websocket connection /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:11.582 ServerApp] Requesting kernel info from f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:11.582 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:11.583 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.584 ServerApp] 200 PATCH /api/sessions/7c129580-c86e-408f-852d-b780e8d692b4?1666797131579 (172.17.0.1) 0.99ms
[D 2022-10-26 15:12:11.587 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.588 ServerApp] 200 GET /api/kernels?1666797131585 (172.17.0.1) 1.35ms
[D 2022-10-26 15:12:11.590 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.591 ServerApp] 200 PATCH /api/sessions/7c129580-c86e-408f-852d-b780e8d692b4?1666797131587 (172.17.0.1) 1.04ms
[D 2022-10-26 15:12:11.595 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel .net-powershell in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel .net-fsharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel .net-csharp in /home/jovyan/.local/share/jupyter/kernels
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel python3 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel julia-1.8 in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:11.596 ServerApp] Found kernel ir in /opt/conda/share/jupyter/kernels
[D 2022-10-26 15:12:11.599 ServerApp] 200 GET /api/kernelspecs?1666797131593 (172.17.0.1) 3.90ms
[D 2022-10-26 15:12:11.606 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:11.608 ServerApp] 200 GET /api/sessions?1666797131603 (172.17.0.1) 1.86ms
[D 2022-10-26 15:12:12.126 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:13.340 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (busy)
[D 2022-10-26 15:12:13.346 ServerApp] Received kernel info: {'protocol_version': '5.3', 'implementation': '.NET', 'implementation_version': '5.1.0', 'language_info': {'name': 'C#', 'version': '10.0', 'mimetype': 'text/x-csharp', 'file_extension': '.cs', 'pygments_lexer': 'csharp'}, 'banner': None, 'status': 'ok', 'help_links': []}
[D 2022-10-26 15:12:13.347 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (idle)
[D 2022-10-26 15:12:13.348 ServerApp] 101 GET /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels?session_id=27a9b066-0959-46bd-9624-6a84acce6597 (172.17.0.1) 1767.59ms
[D 2022-10-26 15:12:13.348 ServerApp] Opening websocket /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:13.349 ServerApp] Getting buffer for f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.349 ServerApp] Connecting to: tcp://127.0.0.1:35175
[D 2022-10-26 15:12:13.349 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:13.350 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:13.350 ServerApp] Connecting to: tcp://127.0.0.1:38185
[D 2022-10-26 15:12:13.351 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:13.351 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:13.352 ServerApp] Nudge: attempt 1 on kernel f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.363 ServerApp] Initializing websocket connection /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:13.368 ServerApp] 101 GET /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels?session_id=de45dac3-584f-4954-a49d-169df49a13c1 (172.17.0.1) 5.67ms
[D 2022-10-26 15:12:13.368 ServerApp] Opening websocket /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:13.368 ServerApp] Getting buffer for f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.369 ServerApp] Connecting to: tcp://127.0.0.1:35175
[D 2022-10-26 15:12:13.369 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:13.370 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:13.370 ServerApp] Connecting to: tcp://127.0.0.1:38185
[D 2022-10-26 15:12:13.371 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:13.372 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:13.375 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (busy)
[D 2022-10-26 15:12:13.376 ServerApp] Nudge: IOPub received: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.376 ServerApp] Nudge: resolving iopub future: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.377 ServerApp] Nudge: shell info reply received: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.377 ServerApp] Nudge: resolving shell future: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.377 ServerApp] Nudge: attempt 1 on kernel f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.379 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (idle)
[D 2022-10-26 15:12:13.383 ServerApp] Initializing websocket connection /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:13.384 ServerApp] Nudge: shell info reply received: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.384 ServerApp] Nudge: resolving shell future: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.385 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (busy)
[D 2022-10-26 15:12:13.385 ServerApp] Nudge: IOPub received: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.385 ServerApp] Nudge: resolving iopub future: f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.387 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (idle)
[D 2022-10-26 15:12:13.389 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (busy)
[D 2022-10-26 15:12:13.391 ServerApp] 101 GET /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels?session_id=d2527426-858c-4a4c-8be9-423c6d53037a (172.17.0.1) 8.00ms
[D 2022-10-26 15:12:13.391 ServerApp] Opening websocket /api/kernels/f2f4c00a-8445-49be-98e9-ab4333793a31/channels
[D 2022-10-26 15:12:13.391 ServerApp] Getting buffer for f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.391 ServerApp] Connecting to: tcp://127.0.0.1:35175
[D 2022-10-26 15:12:13.392 ServerApp] Connecting to: tcp://127.0.0.1:34103
[D 2022-10-26 15:12:13.393 ServerApp] Connecting to: tcp://127.0.0.1:34331
[D 2022-10-26 15:12:13.393 ServerApp] Connecting to: tcp://127.0.0.1:38185
[D 2022-10-26 15:12:13.393 ServerApp] Nudge: not nudging busy kernel f2f4c00a-8445-49be-98e9-ab4333793a31
[D 2022-10-26 15:12:13.394 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (idle)
[D 2022-10-26 15:12:13.398 ServerApp] Websocket closed f2f4c00a-8445-49be-98e9-ab4333793a31:27a9b066-0959-46bd-9624-6a84acce6597
[D 2022-10-26 15:12:13.399 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (busy)
[D 2022-10-26 15:12:13.402 ServerApp] activity on f2f4c00a-8445-49be-98e9-ab4333793a31: status (idle)
[D 2022-10-26 15:12:13.404 ServerApp] Path favicons/favicon-busy-1.ico served from /opt/conda/lib/python3.10/site-packages/jupyter_server/static/favicons/favicon-busy-1.ico
[D 2022-10-26 15:12:13.405 ServerApp] 304 GET /static/favicons/favicon-busy-1.ico (172.17.0.1) 1.53ms
[D 2022-10-26 15:12:13.409 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:13.410 ServerApp] 200 GET /api/sessions?1666797133406 (172.17.0.1) 1.23ms
[D 2022-10-26 15:12:13.411 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:13.412 ServerApp] 200 GET /api/kernels?1666797133407 (172.17.0.1) 1.33ms
[D 2022-10-26 15:12:13.418 ServerApp] 304 GET /static/favicons/favicon-busy-1.ico (172.17.0.1) 1.35ms
[D 2022-10-26 15:12:14.030 ServerApp] 200 GET /api (127.0.0.1) 0.45ms
[D 2022-10-26 15:12:17.856 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:17.857 ServerApp] 200 GET /api/terminals?1666797137852 (172.17.0.1) 1.04ms
[D 2022-10-26 15:12:21.452 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:21.454 ServerApp] 200 GET /api/contents?content=1&1666797141449 (172.17.0.1) 1.60ms
[D 2022-10-26 15:12:23.425 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:23.426 ServerApp] 200 GET /api/sessions?1666797143421 (172.17.0.1) 1.43ms
[D 2022-10-26 15:12:23.427 ServerApp] Accepting token-authenticated connection from 172.17.0.1
[D 2022-10-26 15:12:23.428 ServerApp] 200 GET /api/kernels?1666797143422 (172.17.0.1) 1.67ms

Browser Output

image

@jupyterlab-probot jupyterlab-probot bot added the status:Needs Triage Applied to new issues that need triage label Oct 26, 2022
@welcome
Copy link

welcome bot commented Oct 26, 2022

Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗

If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
welcome
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋

Welcome to the Jupyter community! 🎉

@JasonWeill
Copy link
Contributor

Hi @Martin-Molinero! Thanks for your contribution. Have you tried running Jupyter Notebook with this same kernel? The error message you attached suggests that the kernel has started but isn't responsive.

@Martin-Molinero
Copy link
Author

Hey @jweill-aws! Same error using jupyter notebook
image

Cmdline Output

Entered start.sh with args: jupyter notebook --log-level=DEBUG
Executing the command: jupyter notebook --log-level=DEBUG
[D 18:00:38.015 NotebookApp] Searching ['/home/jovyan', '/home/jovyan/.jupyter', '/home/jovyan/.local/etc/jupyter', '/opt/conda/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files
[D 18:00:38.015 NotebookApp] Looking for jupyter_config in /etc/jupyter
[D 18:00:38.016 NotebookApp] Looking for jupyter_config in /usr/local/etc/jupyter
[D 18:00:38.017 NotebookApp] Looking for jupyter_config in /opt/conda/etc/jupyter
[D 18:00:38.020 NotebookApp] Looking for jupyter_config in /home/jovyan/.local/etc/jupyter
[D 18:00:38.020 NotebookApp] Looking for jupyter_config in /home/jovyan/.jupyter
[D 18:00:38.021 NotebookApp] Looking for jupyter_config in /home/jovyan
[D 18:00:38.022 NotebookApp] Looking for jupyter_notebook_config in /etc/jupyter
[D 18:00:38.023 NotebookApp] Loaded config file: /etc/jupyter/jupyter_notebook_config.py
[D 18:00:38.023 NotebookApp] Looking for jupyter_notebook_config in /usr/local/etc/jupyter
[D 18:00:38.023 NotebookApp] Looking for jupyter_notebook_config in /opt/conda/etc/jupyter
[D 18:00:38.024 NotebookApp] Looking for jupyter_notebook_config in /home/jovyan/.local/etc/jupyter
[D 18:00:38.024 NotebookApp] Looking for jupyter_notebook_config in /home/jovyan/.jupyter
[D 18:00:38.025 NotebookApp] Loaded config file: /home/jovyan/.jupyter/jupyter_notebook_config.py
[D 18:00:38.025 NotebookApp] Looking for jupyter_notebook_config in /home/jovyan
[D 18:00:38.050 NotebookApp] Paths used for configuration of jupyter_notebook_config:
/etc/jupyter/jupyter_notebook_config.json
[D 18:00:38.050 NotebookApp] Paths used for configuration of jupyter_notebook_config:
/usr/local/etc/jupyter/jupyter_notebook_config.json
[D 18:00:38.051 NotebookApp] Paths used for configuration of jupyter_notebook_config:
/opt/conda/etc/jupyter/jupyter_notebook_config.d/jupyterlab.json
/opt/conda/etc/jupyter/jupyter_notebook_config.json
[D 18:00:38.052 NotebookApp] Paths used for configuration of jupyter_notebook_config:
/home/jovyan/.local/etc/jupyter/jupyter_notebook_config.json
[D 18:00:38.052 NotebookApp] Paths used for configuration of jupyter_notebook_config:
/home/jovyan/.jupyter/jupyter_notebook_config.json
[I 18:00:38.057 NotebookApp] Writing notebook server cookie secret to /home/jovyan/.local/share/jupyter/runtime/notebook_cookie_secret
[W 2022-10-27 18:00:39.040 LabApp] 'ip' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-27 18:00:39.040 LabApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-27 18:00:39.040 LabApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[W 2022-10-27 18:00:39.040 LabApp] 'port' has moved from NotebookApp to ServerApp. This config will be passed to ServerApp. Be sure to update your config before our next release.
[I 2022-10-27 18:00:39.047 LabApp] JupyterLab extension loaded from /opt/conda/lib/python3.10/site-packages/jupyterlab
[I 2022-10-27 18:00:39.047 LabApp] JupyterLab application directory is /opt/conda/share/jupyter/lab
[I 18:00:39.051 NotebookApp] Serving notebooks from local directory: /home/jovyan
[I 18:00:39.051 NotebookApp] Jupyter Notebook 6.5.1 is running at:
[I 18:00:39.051 NotebookApp] http://00dba8cb1025:8888/?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11
[I 18:00:39.051 NotebookApp] or http://127.0.0.1:8888/?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11
[I 18:00:39.051 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 18:00:39.054 NotebookApp]

To access the notebook, open this file in a browser:
    file:///home/jovyan/.local/share/jupyter/runtime/nbserver-7-open.html
Or copy and paste one of these URLs:
    http://00dba8cb1025:8888/?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11
 or http://127.0.0.1:8888/?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11

[I 18:00:45.886 NotebookApp] 302 GET /?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11 (172.17.0.1) 0.730000ms
[D 18:00:45.895 NotebookApp] Accepting token-authenticated connection from 172.17.0.1
[D 18:00:45.895 NotebookApp] Using contents: services/contents
[D 18:00:45.932 NotebookApp] Path base/images/favicon.ico served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/base/images/favicon.ico
[E 18:00:45.934 NotebookApp] Could not open static file ''
[D 18:00:45.936 NotebookApp] Path components/jquery-typeahead/dist/jquery.typeahead.min.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/jquery-typeahead/dist/jquery.typeahead.min.css
[D 18:00:45.938 NotebookApp] Path style/style.min.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/style/style.min.css
[D 18:00:45.942 NotebookApp] Path components/es6-promise/promise.min.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/es6-promise/promise.min.js
[D 18:00:45.943 NotebookApp] Path components/react/react.production.min.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/react/react.production.min.js
[D 18:00:45.944 NotebookApp] Path components/react/react-dom.production.min.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/react/react-dom.production.min.js
[D 18:00:45.945 NotebookApp] Path components/create-react-class/index.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/create-react-class/index.js
[D 18:00:45.946 NotebookApp] Path components/requirejs/require.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/requirejs/require.js
[D 18:00:45.947 NotebookApp] Path base/images/logo.png served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/base/images/logo.png
[D 18:00:45.949 NotebookApp] Path tree/js/main.min.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/tree/js/main.min.js
[D 18:00:45.954 NotebookApp] 200 GET /tree?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11 (172.17.0.1) 60.130000ms
[D 18:00:45.976 NotebookApp] Using contents: services/contents
[W 18:00:45.987 NotebookApp] 404 GET /static/components/jquery-ui/themes/smoothness/jquery-ui.min.css (172.17.0.1) 11.520000ms referer=http://127.0.0.1:8888/tree?token=9755765d5c3195b72ae5405c531cc1258ab57f474fce6f11
[D 18:00:45.992 NotebookApp] 200 GET /static/components/jquery-typeahead/dist/jquery.typeahead.min.css?v=5edf53bf6bb9c3b1ddafd8594825a7e2ed621f19423e569c985162742f63911c09eba2c529f8fb47aebf27fafdfe287d563347f58c1126b278189a18871b6a9a (172.17.0.1) 2.630000ms
[D 18:00:45.993 NotebookApp] 200 GET /static/components/react/react-dom.production.min.js?v=6fc58c1c4736868ff84f57bd8b85f2bdb985993a9392718f3b4af4bfa10fb4efba2b4ddd68644bd2a8daf0619a3844944c9c43f8528364a1aa6fc01ec1b8ae84 (172.17.0.1) 3.150000ms
[D 18:00:45.994 NotebookApp] 200 GET /static/style/style.min.css?v=e1ab1c38b672063a6541baf468c83345cd0f509729783ec9b7ccb64073004f5f056110c82c28aefbf3dbf32e0e040f05b8f0420bc411b669ed3d4f07511812ca (172.17.0.1) 4.040000ms
[D 18:00:45.995 NotebookApp] Path custom.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/custom/custom.css
[D 18:00:45.996 NotebookApp] 200 GET /custom/custom.css (172.17.0.1) 5.860000ms
[D 18:00:45.997 NotebookApp] 200 GET /static/components/es6-promise/promise.min.js?v=bea335d74136a63ae1b5130f5ac9a50c6256a5f435e6e09fef599491a84d834a8b0f011ca3eaaca3b4ab6a2da2d3e1191567a2f171e60da1d10e5b9d52f84184 (172.17.0.1) 6.330000ms
[D 18:00:45.998 NotebookApp] 200 GET /static/components/react/react.production.min.js?v=9a0aaf84a316c8bedd6c2ff7d5b5e0a13f8f84ec02442346cba0b842c6c81a6bf6176e64f3675c2ebf357cb5bb048e0b527bd39377c95681d22468da3d5de735 (172.17.0.1) 6.840000ms
[D 18:00:46.001 NotebookApp] 200 GET /static/components/create-react-class/index.js?v=894ad57246e682b4cfbe7cd5e408dcd6b38d06af4de4f3425991e2676fdc2ef1732cbd19903104198878ae77de12a1996de3e7da3a467fb226bdda8f4618faec (172.17.0.1) 1.230000ms
[D 18:00:46.007 NotebookApp] 200 GET /static/components/requirejs/require.js?v=d37b48bb2137faa0ab98157e240c084dd5b1b5e74911723aa1d1f04c928c2a03dedf922d049e4815f7e5a369faa2e6b6a1000aae958b7953b5cc60411154f593 (172.17.0.1) 5.690000ms
[D 18:00:46.018 NotebookApp] 200 GET /static/tree/js/main.min.js?v=2886c9adefe76772a2eab481dc974ef2509e5dc4583e2aab7d11baeb4bf7d753362fa371cb7f2ca96883d39c4658b0dda596b939685d52330377ef49ab6802d8 (172.17.0.1) 3.100000ms
[D 18:00:46.031 NotebookApp] 200 GET /static/base/images/logo.png?v=a2a176ee3cee251ffddf5fa21fe8e43727a9e5f87a06f9c91ad7b776d9e9d3d5e0159c16cc188a3965e00375fb4bc336c16067c688f5040c0c2d4bfdb852a9e4 (172.17.0.1) 2.120000ms
[D 18:00:46.097 NotebookApp] Path services/contents.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/services/contents.js
[D 18:00:46.098 NotebookApp] 200 GET /static/services/contents.js?v=20221027180038 (172.17.0.1) 2.350000ms
[D 18:00:46.119 NotebookApp] 200 GET /static/base/images/favicon.ico?v=50afa725b5de8b00030139d09b38620224d4e7dba47c07ef0e86d4643f30c9bfe6bb7e1a4a1c561aa32834480909a4b6fe7cd1e17f7159330b6b5914bf45a880 (172.17.0.1) 1.010000ms
[D 18:00:46.125 NotebookApp] Paths used for configuration of tree:
/etc/jupyter/nbconfig/tree.json
[D 18:00:46.126 NotebookApp] Paths used for configuration of tree:
/usr/local/etc/jupyter/nbconfig/tree.json
[D 18:00:46.127 NotebookApp] Paths used for configuration of tree:
/opt/conda/etc/jupyter/nbconfig/tree.json
[D 18:00:46.128 NotebookApp] Paths used for configuration of tree:
/home/jovyan/.local/etc/jupyter/nbconfig/tree.json
[D 18:00:46.128 NotebookApp] Paths used for configuration of tree:
/home/jovyan/.jupyter/nbconfig/tree.json
[D 18:00:46.129 NotebookApp] 200 GET /api/config/tree?=1666893646083 (172.17.0.1) 5.270000ms
[D 18:00:46.131 NotebookApp] Paths used for configuration of common:
/etc/jupyter/nbconfig/common.json
[D 18:00:46.132 NotebookApp] Paths used for configuration of common:
/usr/local/etc/jupyter/nbconfig/common.json
[D 18:00:46.133 NotebookApp] Paths used for configuration of common:
/opt/conda/etc/jupyter/nbconfig/common.json
[D 18:00:46.134 NotebookApp] Paths used for configuration of common:
/home/jovyan/.local/etc/jupyter/nbconfig/common.json
[D 18:00:46.135 NotebookApp] Paths used for configuration of common:
/home/jovyan/.jupyter/nbconfig/common.json
[D 18:00:46.135 NotebookApp] 200 GET /api/config/common?
=1666893646084 (172.17.0.1) 5.160000ms
[D 18:00:46.137 NotebookApp] 200 GET /api/terminals?=1666893646085 (172.17.0.1) 1.010000ms
[D 18:00:46.140 NotebookApp] Found kernel .net-powershell in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:46.140 NotebookApp] Found kernel .net-fsharp in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:46.140 NotebookApp] Found kernel .net-csharp in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:46.141 NotebookApp] Found kernel python3 in /opt/conda/share/jupyter/kernels
[D 18:00:46.142 NotebookApp] Found kernel julia-1.8 in /opt/conda/share/jupyter/kernels
[D 18:00:46.142 NotebookApp] Found kernel ir in /opt/conda/share/jupyter/kernels
[D 18:00:46.277 NotebookApp] 200 GET /api/kernelspecs (172.17.0.1) 139.790000ms
[D 18:00:46.279 NotebookApp] 200 GET /api/terminals?
=1666893646087 (172.17.0.1) 1.490000ms
[D 18:00:46.284 NotebookApp] 200 GET /api/sessions?=1666893646086 (172.17.0.1) 5.310000ms
[D 18:00:46.286 NotebookApp] Path components/font-awesome/fonts/fontawesome-webfont.woff2 served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/font-awesome/fonts/fontawesome-webfont.woff2
[D 18:00:46.288 NotebookApp] 200 GET /static/components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0 (172.17.0.1) 3.280000ms
[D 18:00:46.288 NotebookApp] Path custom.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/custom/custom.js
[D 18:00:46.290 NotebookApp] 200 GET /custom/custom.js?v=20221027180038 (172.17.0.1) 4.580000ms
[D 18:00:46.297 NotebookApp] 200 GET /api/contents?type=directory&
=1666893646088 (172.17.0.1) 2.810000ms
[D 18:00:52.068 NotebookApp] 200 GET /api (127.0.0.1) 0.460000ms
[I 18:00:54.799 NotebookApp] Creating new notebook in
[D 18:00:54.878 NotebookApp] Saving /home/jovyan/Untitled.ipynb
[I 18:00:54.895 NotebookApp] Writing notebook-signing key to /home/jovyan/.local/share/jupyter/notebook_secret
[D 18:00:54.905 NotebookApp] 201 POST /api/contents (172.17.0.1) 107.000000ms
[D 18:00:54.912 NotebookApp] Using contents: services/contents
[D 18:00:54.943 NotebookApp] Path base/images/favicon-notebook.ico served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/base/images/favicon-notebook.ico
[D 18:00:54.945 NotebookApp] Path components/bootstrap-tour/build/css/bootstrap-tour.min.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css
[D 18:00:54.946 NotebookApp] Path components/codemirror/lib/codemirror.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/codemirror/lib/codemirror.css
[D 18:00:54.947 NotebookApp] Path notebook/css/override.css served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/notebook/css/override.css
[D 18:00:55.472 NotebookApp] Path components/text-encoding/lib/encoding.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/text-encoding/lib/encoding.js
[D 18:00:55.474 NotebookApp] Path notebook/js/main.min.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/notebook/js/main.min.js
[D 18:00:55.485 NotebookApp] 200 GET /notebooks/Untitled.ipynb?kernel_name=.net-csharp (172.17.0.1) 573.640000ms
[D 18:00:55.499 NotebookApp] Path components/MathJax/MathJax.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/MathJax.js
[D 18:00:55.500 NotebookApp] 200 GET /static/components/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full,Safe&delayStartupUntil=configured (172.17.0.1) 3.350000ms
[D 18:00:55.501 NotebookApp] Using contents: services/contents
[W 18:00:55.502 NotebookApp] 404 GET /static/components/jquery-ui/themes/smoothness/jquery-ui.min.css (172.17.0.1) 4.180000ms referer=http://127.0.0.1:8888/notebooks/Untitled.ipynb?kernel_name=.net-csharp
[D 18:00:55.506 NotebookApp] 200 GET /static/notebook/css/override.css?v=16733f6ba5f2224692fe4e654f3cbb2e3cae82f1df06ca53aa1cb88b147465f16c968c0898e2b0203a7ad3a469f82b959e26bb4b27b790f7f364c4336449b0aa (172.17.0.1) 3.180000ms
[D 18:00:55.507 NotebookApp] 200 GET /static/components/bootstrap-tour/build/css/bootstrap-tour.min.css?v=95c93e52db61ab29625defe55361384ce6776a7d303b97da5a73fef5ddf8e391a6223599a0b58669476bd71645a4f0022df0517c88b0c05df80ba465e36f5417 (172.17.0.1) 3.350000ms
[D 18:00:55.508 NotebookApp] 200 GET /static/components/codemirror/lib/codemirror.css?v=a545ad5e21a51420a7cb40234688eef087a5cf3798f64d7750291a8be0e9c760b8a1c9cbbbdcaa6470f2f385caa59e816f2640f609d29147f4762e27f69709e6 (172.17.0.1) 3.680000ms
[D 18:00:55.509 NotebookApp] 304 GET /custom/custom.css (172.17.0.1) 3.510000ms
[D 18:00:55.516 NotebookApp] 200 GET /static/components/text-encoding/lib/encoding.js?v=737ac6f9f978afb6348b5914877e7d7136de7465cd4cdf389bad9a6b3ad5ceffbfb23febc75c23378967d7d36f98f5388208e8eb78c80f2bf47e8f8c000481ad (172.17.0.1) 0.880000ms
[D 18:00:55.523 NotebookApp] 200 GET /static/notebook/js/main.min.js?v=4e682d485898a13f5889c522f3672fb3d6ff4ded0e5fc208638018d7cfb8d014b0212385478637ae928cfee70a77116e80ed63194b371b380110466265e34a97 (172.17.0.1) 6.180000ms
[D 18:00:55.535 NotebookApp] Path components/MathJax/config/TeX-AMS-MML_HTMLorMML-full.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/config/TeX-AMS-MML_HTMLorMML-full.js
[D 18:00:55.538 NotebookApp] 200 GET /static/components/MathJax/config/TeX-AMS-MML_HTMLorMML-full.js?V=2.7.9 (172.17.0.1) 4.450000ms
[D 18:00:55.565 NotebookApp] Path components/MathJax/config/Safe.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/config/Safe.js
[D 18:00:55.565 NotebookApp] 200 GET /static/components/MathJax/config/Safe.js?V=2.7.9 (172.17.0.1) 1.560000ms
[D 18:00:55.636 NotebookApp] 200 GET /static/base/images/favicon-notebook.ico?v=eb02bb6f6435d048eba1bf1bd3b3621f8c14f26518dbadd8efd4ee6ee2721caf2367bc0cbc27d2ee2c35bc3b035aad07c6d625422b9445bf301897f493d0edc5 (172.17.0.1) 0.670000ms
[D 18:00:55.738 NotebookApp] Paths used for configuration of notebook:
/etc/jupyter/nbconfig/notebook.json
[D 18:00:55.739 NotebookApp] Paths used for configuration of notebook:
/usr/local/etc/jupyter/nbconfig/notebook.json
[D 18:00:55.740 NotebookApp] Paths used for configuration of notebook:
/opt/conda/etc/jupyter/nbconfig/notebook.d/jupyter-matplotlib.json
/opt/conda/etc/jupyter/nbconfig/notebook.d/widgetsnbextension.json
/opt/conda/etc/jupyter/nbconfig/notebook.json
[D 18:00:55.741 NotebookApp] Paths used for configuration of notebook:
/home/jovyan/.local/etc/jupyter/nbconfig/notebook.json
[D 18:00:55.742 NotebookApp] Paths used for configuration of notebook:
/home/jovyan/.jupyter/nbconfig/notebook.json
[D 18:00:55.742 NotebookApp] 200 GET /api/config/notebook?=1666893655625 (172.17.0.1) 4.570000ms
[D 18:00:55.743 NotebookApp] Paths used for configuration of common:
/etc/jupyter/nbconfig/common.json
[D 18:00:55.744 NotebookApp] Paths used for configuration of common:
/usr/local/etc/jupyter/nbconfig/common.json
[D 18:00:55.744 NotebookApp] Paths used for configuration of common:
/opt/conda/etc/jupyter/nbconfig/common.json
[D 18:00:55.745 NotebookApp] Paths used for configuration of common:
/home/jovyan/.local/etc/jupyter/nbconfig/common.json
[D 18:00:55.745 NotebookApp] Paths used for configuration of common:
/home/jovyan/.jupyter/nbconfig/common.json
[D 18:00:55.745 NotebookApp] 200 GET /api/config/common?
=1666893655626 (172.17.0.1) 2.870000ms
[D 18:00:55.756 NotebookApp] Path components/MathJax/extensions/MathML/content-mathml.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/extensions/MathML/content-mathml.js
[D 18:00:55.758 NotebookApp] 200 GET /static/components/MathJax/extensions/MathML/content-mathml.js?V=2.7.9 (172.17.0.1) 2.710000ms
[D 18:00:55.760 NotebookApp] Path components/MathJax/extensions/TeX/begingroup.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/extensions/TeX/begingroup.js
[D 18:00:55.760 NotebookApp] 200 GET /static/components/MathJax/extensions/TeX/begingroup.js?V=2.7.9 (172.17.0.1) 2.360000ms
[D 18:00:55.761 NotebookApp] Path components/MathJax/extensions/TeX/newcommand.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/extensions/TeX/newcommand.js
[D 18:00:55.762 NotebookApp] 200 GET /static/components/MathJax/extensions/TeX/newcommand.js?V=2.7.9 (172.17.0.1) 3.060000ms
[D 18:00:55.778 NotebookApp] Found kernel .net-powershell in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:55.779 NotebookApp] Found kernel .net-fsharp in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:55.779 NotebookApp] Found kernel .net-csharp in /home/jovyan/.local/share/jupyter/kernels
[D 18:00:55.779 NotebookApp] Found kernel python3 in /opt/conda/share/jupyter/kernels
[D 18:00:55.779 NotebookApp] Found kernel julia-1.8 in /opt/conda/share/jupyter/kernels
[D 18:00:55.779 NotebookApp] Found kernel ir in /opt/conda/share/jupyter/kernels
[D 18:00:55.781 NotebookApp] 304 GET /api/kernelspecs (172.17.0.1) 2.990000ms
[D 18:00:55.799 NotebookApp] 200 GET /api/contents/Untitled.ipynb?type=notebook&=1666893655627 (172.17.0.1) 7.890000ms
[D 18:00:55.802 NotebookApp] Path components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js
[D 18:00:55.804 NotebookApp] 200 GET /static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js?V=2.7.9 (172.17.0.1) 3.970000ms
[D 18:00:55.804 NotebookApp] 304 GET /custom/custom.js?v=20221027180038 (172.17.0.1) 4.040000ms
[D 18:00:55.815 NotebookApp] Path jupyter-js-widgets/extension.js served from /opt/conda/share/jupyter/nbextensions/jupyter-js-widgets/extension.js
[D 18:00:55.819 NotebookApp] 200 GET /nbextensions/jupyter-js-widgets/extension.js?v=20221027180038 (172.17.0.1) 6.600000ms
[D 18:00:55.820 NotebookApp] Path jupyter-matplotlib/extension.js served from /opt/conda/share/jupyter/nbextensions/jupyter-matplotlib/extension.js
[D 18:00:55.821 NotebookApp] 200 GET /nbextensions/jupyter-matplotlib/extension.js?v=20221027180038 (172.17.0.1) 8.060000ms
[D 18:00:55.822 NotebookApp] Path components/MathJax/extensions/Safe.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/MathJax/extensions/Safe.js
[D 18:00:55.824 NotebookApp] 200 GET /static/components/MathJax/extensions/Safe.js?V=2.7.9 (172.17.0.1) 2.350000ms
[D 18:00:55.864 NotebookApp] Instantiating kernel '.NET (C#)' with kernel provisioner: local-provisioner
[D 18:00:55.870 NotebookApp] Starting kernel: ['dotnet', 'interactive', 'jupyter', '--default-kernel', 'csharp', '/home/jovyan/.local/share/jupyter/runtime/kernel-12392e40-ab51-42ca-bc18-0c223c1ee008.json', '--http-port-range', '1000-3000']
[D 18:00:55.876 NotebookApp] Connecting to: tcp://127.0.0.1:46935
[D 18:00:55.879 NotebookApp] 200 GET /api/contents/Untitled.ipynb/checkpoints?
=1666893655628 (172.17.0.1) 3.290000ms
[D 18:00:55.888 NotebookApp] Connecting to: tcp://127.0.0.1:34069
[I 18:00:55.890 NotebookApp] Kernel started: 12392e40-ab51-42ca-bc18-0c223c1ee008, name: .net-csharp
[D 18:00:55.890 NotebookApp] Kernel args: {'kernel_name': '.net-csharp', 'cwd': '/home/jovyan'}
[D 18:00:55.891 NotebookApp] 201 POST /api/sessions (172.17.0.1) 36.200000ms
[D 18:00:55.904 NotebookApp] Initializing websocket connection /api/kernels/12392e40-ab51-42ca-bc18-0c223c1ee008/channels
[D 18:00:55.906 NotebookApp] Requesting kernel info from 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:55.906 NotebookApp] Connecting to: tcp://127.0.0.1:53349
[D 18:00:56.902 NotebookApp] Path base/images/favicon-busy-1.ico served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/base/images/favicon-busy-1.ico
[D 18:00:56.903 NotebookApp] 200 GET /static/base/images/favicon-busy-1.ico (172.17.0.1) 1.340000ms
[D 18:00:58.189 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (busy)
[D 18:00:58.193 NotebookApp] Received kernel info: {'protocol_version': '5.3', 'implementation': '.NET', 'implementation_version': '5.1.0', 'language_info': {'name': 'C#', 'version': '10.0', 'mimetype': 'text/x-csharp', 'file_extension': '.cs', 'pygments_lexer': 'csharp'}, 'banner': None, 'status': 'ok', 'help_links': []}
[D 18:00:58.194 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (idle)
[D 18:00:58.195 NotebookApp] 101 GET /api/kernels/12392e40-ab51-42ca-bc18-0c223c1ee008/channels?session_id=cc0be9877db24dc5824e859efc8dcc27 (172.17.0.1) 2291.550000ms
[D 18:00:58.195 NotebookApp] Opening websocket /api/kernels/12392e40-ab51-42ca-bc18-0c223c1ee008/channels
[D 18:00:58.196 NotebookApp] Getting buffer for 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.196 NotebookApp] Connecting to: tcp://127.0.0.1:34069
[D 18:00:58.196 NotebookApp] Connecting to: tcp://127.0.0.1:53349
[D 18:00:58.197 NotebookApp] Connecting to: tcp://127.0.0.1:46935
[D 18:00:58.198 NotebookApp] Connecting to: tcp://127.0.0.1:56629
[D 18:00:58.198 NotebookApp] Connecting to: tcp://127.0.0.1:53349
[D 18:00:58.199 NotebookApp] Connecting to: tcp://127.0.0.1:46935
[D 18:00:58.200 NotebookApp] Nudge: attempt 1 on kernel 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.209 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (busy)
[D 18:00:58.209 NotebookApp] Nudge: IOPub received: 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.209 NotebookApp] Nudge: resolving iopub future: 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.210 NotebookApp] Nudge: shell info reply received: 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.210 NotebookApp] Nudge: resolving shell future: 12392e40-ab51-42ca-bc18-0c223c1ee008
[D 18:00:58.210 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (idle)
[D 18:00:58.214 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (busy)
[D 18:00:58.217 NotebookApp] activity on 12392e40-ab51-42ca-bc18-0c223c1ee008: status (idle)
[D 18:00:58.220 NotebookApp] 200 GET /static/base/images/favicon-notebook.ico (172.17.0.1) 1.060000ms
[D 18:00:58.226 NotebookApp] Path components/codemirror/mode/clike/clike.js served from /opt/conda/lib/python3.10/site-packages/nbclassic/static/components/codemirror/mode/clike/clike.js
[D 18:00:58.227 NotebookApp] 200 GET /static/components/codemirror/mode/clike/clike.js?v=20221027180038 (172.17.0.1) 2.310000ms
[D 18:01:07.131 NotebookApp] 200 GET /api (127.0.0.1) 0.430000ms
[D 18:01:21.199 NotebookApp] 200 GET /api/sessions?=1666893646089 (172.17.0.1) 0.950000ms
[D 18:01:21.205 NotebookApp] 200 GET /api/terminals?
=1666893646090 (172.17.0.1) 0.790000ms
[D 18:01:21.220 NotebookApp] 200 GET /api/contents?type=directory&_=1666893646091 (172.17.0.1) 1.740000ms
[D 18:01:22.203 NotebookApp] 200 GET /api (127.0.0.1) 0.810000ms
[D 18:01:37.263 NotebookApp] 200 GET /api (127.0.0.1) 0.440000ms

@andrii-i
Copy link
Contributor

andrii-i commented Nov 3, 2022

Triage notes: it looks like this is an issue with C# kernel, not with jupyterlab. We recommend to follow-up on the dotnet interactive issue

@andrii-i andrii-i closed this as completed Nov 3, 2022
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 4, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug status:Needs Info status:Needs Triage Applied to new issues that need triage
Projects
None yet
Development

No branches or pull requests

3 participants