Last active
June 21, 2018 02:03
-
-
Save jackvial/19871f4acd27b9a883a596f2a5787c3c to your computer and use it in GitHub Desktop.
Revisions
-
jackvial renamed this gist
Jun 21, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jackvial revised this gist
Jun 21, 2018 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ ### Remote Jupyter Notebook ```bash $laptop: ssh -l <username>@<yourNewServerIP> $server: jupyter notebook --no-browser --port=8888 $laptop: ssh -NL 8888:localhost:8888 <username>@<yourNewServerIP> ``` Then you can goto http://localhost:8888 on your laptop’s browser and remotely view/edit your Jupyter notebooks. -
jackvial created this gist
Jun 21, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ ### Remote Jupyter Notebook $laptop: ssh -l <username>@<yourNewServerIP> $server: jupyter notebook --no-browser --port=8888 $laptop: ssh -NL 8888:localhost:8888 <username>@<yourNewServerIP> Then you can goto http://localhost:8888 on your laptop’s browser and remotely view/edit your Jupyter notebooks.