Skip to content

Instantly share code, notes, and snippets.

@kentwait
Created September 9, 2022 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentwait/1e91189b04533c1f6f522ab2468576dd to your computer and use it in GitHub Desktop.
Save kentwait/1e91189b04533c1f6f522ab2468576dd to your computer and use it in GitHub Desktop.
Run remote jupyter in LAN
# On remote (c24.local)
jupyter notebook --no-browser --port=10000
# On current computer
# create a tunnel that runs in the bg
# first set of name:port is local, second set is remote
ssh -f -N -L localhost:10024:localhost:10000 kent@c24.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment