Installs JupyterLab.
Script status: Stable
OS support: Debian 9+, Ubuntu 18.04+, and downstream distros.
Maintainer: GitHub Codespaces team
./jupyterlab-debian.sh
Or as a feature:
"features": {
"jupyterlab": {
"version": "latest"
}
}To install this feature in your primary dev container, reference it in devcontainer.json as follows:
"features": {
"jupyterlab": {
"version": "latest"
}
}If you have already built your development container, run the Rebuild Container command from the command palette (Ctrl/Cmd + Shift + P or F1) to pick up the change.
You must have Python already installed in order to use this feature.
-
Add
jupyterlab-debian.shto.devcontainer/library-scripts -
Add the following to your
.devcontainer/Dockerfile:COPY library-scripts/jupyterlab-debian.sh /tmp/library-scripts/ RUN bash /tmp/library-scripts/jupyterlab-debian.sh
That's it!