Skip to content

Instantly share code, notes, and snippets.

@marcelsan
Forked from Colelyman/jupyter.sh
Created December 26, 2017 17:31
Show Gist options
  • Select an option

  • Save marcelsan/772aa2c9de6fdb6f4fe7ddb39fad20fc to your computer and use it in GitHub Desktop.

Select an option

Save marcelsan/772aa2c9de6fdb6f4fe7ddb39fad20fc to your computer and use it in GitHub Desktop.
Get Jupyter Notebook Running in SSH Tunnel
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