Revision 2 as of 2021-06-29 09:55:22

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)