Revision 1 as of 2020-12-01 13:11:23

Clear message

How to setup and use Jupyter Notebook

Jupyter Notebook can easily be installed and started in a conda environment:

conda create --name jupyternb notebook --channel conda-forge
conda activate jupyternb
jupyter notebook --no-browser --port 5998 --ip $(hostname -f)