<2018-08-04>
1.) Access the remote server via ssh
2.) Start jupyter server on the remote machine
jupyter notebook --no-browser --port=8889
3.) Forward port 8889 from your remote machine to port 8888 of your local machine
ssh -N -f -L localhost:8888:localhost:8889 remote_user@remote_host
4.) Access the remote notebook from your local browser visiting localhost:8888
I find this very usefull, especially when working with plots and audio.
Comments
If you have comments, questions or opinions please drop me a line at 2018-08-04–remote-jupyter-notebook AT zngguvnf dot org. Please tell me whether it's ok to publish your comment here or not.