Getting started with JupyterLab

The installation guide contains more detailed instructions

Installation with mamba or conda

JupyterLab can be installed with mamba and conda:

mamba install -c conda-forge jupyterlab

or

conda install -c conda-forge jupyterlab

Note: If you have not installed mamba or conda yet, you can get started with the miniforge distribution.

Installation with pip

If you use pip, you can install it with:

pip install jupyterlab

If installing using pip install --user, you must add the user-level bin directory to your PATH environment variable in order to launch jupyter lab. If you are using a Unix derivative (FreeBSD, GNU / Linux, OS X), you can achieve this by using export PATH="$HOME/.local/bin:$PATH" command.

Run JupyterLab

Once installed, launch JupyterLab with:

jupyter-lab

Getting started with the classic Jupyter Notebook

Installation with mamba or conda

The classic notebook can be installed with mamba and conda:

mamba install -c conda-forge notebook

or

conda install -c conda-forge notebook

Installation with pip

If you use pip, you can install it with:

pip install notebook

Congratulations, you have installed Jupyter Notebook! To run the notebook, run the following command at the Terminal (Mac/Linux) or Command Prompt (Windows):

jupyter notebook

See Running the Notebook for more details.

Getting started with Voilà

Installation with mamba or conda

If you use mamba or conda, you can install it with:

mamba install -c conda-forge voila

or

conda install -c conda-forge voila

For more detailed instructions, consult the installation guide.

Installation with pip

If you use pip, you can install it with:

pip install voila