-
-
Save marcelsan/772aa2c9de6fdb6f4fe7ddb39fad20fc to your computer and use it in GitHub Desktop.
Get Jupyter Notebook Running in SSH Tunnel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user@server$ jupyter notebook --no-browser --port=8889 | |
| # run client side | |
| user@client$ ssh -N -f -L localhost:8000:localhost:8889 remote_user@remote_host | |
| firefox http://localhost:8000 | |
| # source: https://coderwall.com/p/ohk6cg/remote-access-to-ipython-notebooks-via-ssh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment