Skip to content

Instantly share code, notes, and snippets.

@jackvial
Last active June 21, 2018 02:03
Show Gist options
  • Select an option

  • Save jackvial/19871f4acd27b9a883a596f2a5787c3c to your computer and use it in GitHub Desktop.

Select an option

Save jackvial/19871f4acd27b9a883a596f2a5787c3c to your computer and use it in GitHub Desktop.

Revisions

  1. jackvial renamed this gist Jun 21, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. jackvial revised this gist Jun 21, 2018. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion Juypter_ssh.md
    Original 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.
  3. jackvial created this gist Jun 21, 2018.
    7 changes: 7 additions & 0 deletions Juypter_ssh.md
    Original 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.