Jupyter

References:

http://jupyter-notebook.readthedocs.io/en/latest/index.html

https://medium.com/@lucasrg/using-jupyter-notebook-running-on-a-remote-docker-container-via-ssh-ea2c3ebb9055

# To run jupyter from a terminal without docker
 jupyter notebook --ip 0.0.0.0 --port 6025&

# To run jupyter from inside docker - needs root privilege
 jupyter notebook --ip 0.0.0.0 --port 6025 --allow-root

# using the new cool jupyter lab
jupyter lab --ip 0.0.0.0 --port <container port> --allow-root

At any later time, you can see the tokens and URLs for all of your running servers with 

> jupyter notebook list

Last updated

Was this helpful?