How to Install Jupyter Notebook on Ubuntu 20.04 / 18.04

To Nha Notes | Aug. 16, 2022, 1:48 p.m.

Install

mkdir notebook
cd notebook
virtualenv jupyterenv
source jupyterenv/bin/activate
pip install jupyter

Run Jupyter Notebook

jupyter notebook --allow-root

 

Access to Jupyter Notebook from browser

http://localhost:8888/?token=<run-time-token>

References

https://speedysense.com/install-jupyter-notebook-on-ubuntu-20-04/