Last active
December 27, 2022 13:29
-
-
Save shubhamagarwal92/384fb3d3d74b95043d0c9795e1da123c to your computer and use it in GitHub Desktop.
How to start jupyter notebook over server and doing ssh
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
# Refer https://fizzylogic.nl/2017/11/06/edit-jupyter-notebooks-over-ssh/ | |
# On server | |
jupyter notebook --no-browser --port=8080 | |
# On local machine | |
ssh -N -L 8080:localhost:8080 <remote_user>@<remote_host> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment