Get up and running with the Jupyter Notebook on your computer within minutes! Follow the instructions below.
While Jupyter runs code in many programming languages, Python is a requirement (Python 3.3 or greater, or Python 2.7) for installing the Jupyter Notebook.
We recommend using the Anaconda distribution to install Python and Jupyter. We’ll go through its installation in the next section.
For new users, we highly recommend installing Anaconda. Anaconda conveniently installs Python, the Jupyter Notebook, and other commonly used packages for scientific computing and data science.
We recommend using the Anaconda distribution to install Python and Jupyter. We’ll go through its installation in the next section.
jupyter notebook
See Running the Notebook for more details.
As an existing Python user, you may wish to install Jupyter using Python’s package manager, pip, instead of Anaconda.
First, ensure that you have the latest pip; older versions may have trouble with some dependencies:
pip3 install --upgrade pip
Then install the Jupyter Notebook using:
pip3 install jupyter
(Use pip if using legacy Python 2.)
Congratulations. You have installed Jupyter Notebook.
See Running the Notebook for more details.