How to remote use ipython notebook via ssh


Run ipython notebook on remote machine

ssh user@host
ipython notebook --no-browser --port=8889

Open terminal on your local machine

ssh -N -f -L localhost:8888:localhost:8889 user@host

Open your website on your local machine

localhost:8888