Assume remote ssh account is Alice@remote_ip_address
- Use ssh to log into remote server.
- start Jupiter notebook by:
ipython notebook --no-browser --port=7000- you may change to any other usable port.
- A Token will be generated
- add
--debugif wish to see crash info
- in local system
ssh -N -f -L localhost:6001:localhost:7000 Alice@remote_ip_address - visit local browser with
localhost:6001; use the token for authentication.
Done!