Jupyter Notebook

Installation

# use conda
conda install -c conda-forge notebook
# use pip
pip install notebook

Basic Usage

# normal run to view with local browser
jupyter notebook

# run on remote server
# Replace <PORT> with your selected port number
jupyter notebook --no-browser --port=<PORT>

Reference

[1] https://docs.anaconda.com/anaconda/user-guide/tasks/remote-jupyter-notebook/

[2] https://jupyter.org/install

Last updated

Was this helpful?