Jupyter Notebook

Setup

pip install jupyter

Usage

jupyter notebook

Magic Functions

%matplotlib inline sets the backend of matplotlib to the 'inline' backend:

With this backend, the output of plotting commands is displayed inline within frontends like the Jupyter notebook, directly below the code cell that produced it. The resulting plots will then also be stored in the notebook document.

Multiple Kernels/Environments

In the environment, run pip install ipykernel

Last updated