Skip to content

Instantly share code, notes, and snippets.

@shubhamagarwal92
Last active December 27, 2022 13:29
Show Gist options
  • Save shubhamagarwal92/384fb3d3d74b95043d0c9795e1da123c to your computer and use it in GitHub Desktop.
Save shubhamagarwal92/384fb3d3d74b95043d0c9795e1da123c to your computer and use it in GitHub Desktop.
How to start jupyter notebook over server and doing ssh
# 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