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/
Last updated
Was this helpful?