Created
September 9, 2022 04:02
-
-
Save kentwait/1e91189b04533c1f6f522ab2468576dd to your computer and use it in GitHub Desktop.
Run remote jupyter in LAN
This file contains 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
# 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 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment