Changes between Version 9 and Version 10 of totten


Ignore:
Timestamp:
01/20/23 12:44:42 (2 years ago)
Author:
Cheng Gong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • totten

    v9 v10  
    106106    --enable-debugging
    107107}}}
    108 }}}
    109108
    110109
     
    112111In order to install gdal, you need to install the python from the externalpackages.
    113112Once that is done, unset the PYTHON-related variables in etc/environment.sh, because this python installation causes future issues with other packages, e.g. PETSC.
     113
     114== Run Jupyter Notebook on totten ==
     115You can run Jupyter Notebook **on totten** (after `ssh` to the remote server) with the following command:
     116{{{
     117#!sh
     118jupyter notebook --no-browser --port=8080
     119}}}
     120Keep this terminal alive, where you will need the token to access the Notebook.
     121
     122To access your notebook via the **browser from your local machine**, you just need to link the totten's port `8080` to your `localhost:8080` by the command (on your local machine)
     123{{{
     124#!sh
     125ssh -L 8080:localhost:8080 yourname@totten.dartmouth.edu
     126}}}
     127After this, open a web browser on your local machine, and access the Jupyter Notebook from ` http://localhost:8080/`.
     128You might be asked to enter the token, which you can find in the terminal you kept alive for Jupyter Notebook.
     129
    114130
    115131== Installing ISSM with CoDiPack (AD) ==