Skip to content

Remote Jupyter access

Manuel edited this page Mar 29, 2022 · 1 revision

This Wiki page introduces how to open a Jupyter notebook on a remote machine to have an easy and interactive interface for prototyping your algorithms.

Setup Jupyter on remote machine

jupyter notebook password
>>> Enter password:
jupyter lab --port=9000 --no-browser &

Setup the local machine

ssh -N -f -L 8888:localhost:9000 fergus@funkyserver

Then access it from your browser.

Clone this wiki locally