https://github.com/davidbrochart/jupytercon2023
https://github.com/davidbrochart/jupytercon2023
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidbrochart/jupytercon2023
- Owner: davidbrochart
- Created: 2023-05-02T13:03:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-02T13:03:19.000Z (almost 3 years ago)
- Last Synced: 2025-03-02T00:47:43.116Z (12 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```bash
micromamba create -n jupytercon2023
micromamba activate jupytercon2023
micromamba install -c conda-forge jupyter_server
jupyter server
jupyter server extension list
# jupyter_server_terminals
micromamba install -c conda-forge jupyterlab
jupyter server extension list
# jupyter_server_terminals
# jupyter_server_fileid
# jupyter_server_ydoc
# jupyterlab
# nbclassic
jupyter lab
jupyter server extension disable jupyter_server_terminals
jupyter server extension list
jupyter lab
# not able to open a terminal
jupyter lab --ServerApp.jpserver_extensions="jupyter_server_terminals=True"
pip install -e .
http://127.0.0.1:8888/myextension/hello
```