Last active
January 30, 2024 12:46
-
-
Save krassowski/49f48f992a1abb4702868b695bfadfd1 to your computer and use it in GitHub Desktop.
JupyterLab 4.0.0b1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"LabApp": { "expose_app_in_browser": true } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@jupyterlab/shortcuts-extension:shortcuts": { | |
"shortcuts": [ | |
{ | |
"args": {}, | |
"command": "documentsearch:start", | |
"keys": [ | |
"Accel F" | |
], | |
"disabled": true, | |
"selector": ".jp-mod-searchable" | |
}, | |
{ | |
"args": {}, | |
"command": "settingeditor:open", | |
"keys": [ | |
"Accel ;" | |
], | |
"selector": "body" | |
} | |
] | |
}, | |
"@jupyterlab/apputils-extension:palette": { | |
"modal": false | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eux | |
mkdir -p ${NB_PYTHON_PREFIX}/share/jupyter/lab/settings | |
cp overrides.json ${NB_PYTHON_PREFIX}/share/jupyter/lab/settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ipykernel>=6 | |
jupyterlab==4.0.0b1 | |
jupyterlab_server>=2.25.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python-3.10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
echo $@ | |
exec jupyter-lab "${@:4}" --config jupyter-config.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment