Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.12 KB

File metadata and controls

57 lines (38 loc) · 1.12 KB

JupyterLab Install Script

Installs JupyterLab.

Script status: Stable

OS support: Debian 9+, Ubuntu 18.04+, and downstream distros.

Maintainer: GitHub Codespaces team

Syntax

./jupyterlab-debian.sh

Or as a feature:

"features": {
  "jupyterlab": {
    "version": "latest"
  }
}

Usage

Feature use

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.

Script use

  1. Add jupyterlab-debian.sh to .devcontainer/library-scripts

  2. 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!