https://github.com/davidbrochart/jupyter_server_kernels_proxy
A Jupyter Server Extension Proxying Kernels.
https://github.com/davidbrochart/jupyter_server_kernels_proxy
Last synced: 4 months ago
JSON representation
A Jupyter Server Extension Proxying Kernels.
- Host: GitHub
- URL: https://github.com/davidbrochart/jupyter_server_kernels_proxy
- Owner: davidbrochart
- License: mit
- Created: 2022-11-30T17:06:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-15T08:44:34.000Z (about 3 years ago)
- Last Synced: 2024-09-14T09:57:22.100Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jupyter Server Kernels Proxy
In one terminal/environment:
```console
pip install fps_uvicorn
pip install fps_kernels
pip install fps-noauth
# launch a terminal server at http://127.0.0.1:8000
fps-uvicorn --port=8000 --no-open-browser
```
In another terminal/environment:
```console
pip install https://github.com/davidbrochart/jupyter_server/archive/kernels_extension.zip
pip install jupyter_server_kernels_proxy
pip install jupyterlab
# launch JupyterLab at http://127.0.0.1:8888 and proxy kernels at http://127.0.0.1:8000
jupyter lab --port=8888 --KernelsProxyExtensionApp.proxy_url='http://127.0.0.1:8000'
```
Kernels should now be served from http://127.0.0.1:8000.