Skip to content

Latest commit

 

History

History
80 lines (50 loc) · 2.13 KB

install.md

File metadata and controls

80 lines (50 loc) · 2.13 KB
layout title tagline permalink
page_md
Installing the Jupyter Software
Get up and running with the JupyterLab or the classic Jupyter Notebook on your computer within minutes!
/install

Getting started with JupyterLab

Installation

JupyterLab can be installed using conda or pip. For more detailed instructions, consult the installation guide.

conda

If you use conda, you can install it with:

conda install -c conda-forge jupyterlab

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.

Getting started with the classic Jupyter Notebook

conda

We recommend installing the classic Jupyter Notebook using the conda package manager. Either the miniconda or the miniforge conda distributions include a minimal conda installation.

Then you can install the notebook with:

conda install -c conda-forge notebook

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

Voilà can be installed using conda or pip. For more detailed instructions, consult the installation guide.

conda

If you use conda, you can install it with:

conda install -c conda-forge voila

pip

If you use pip, you can install it with:

pip install voila