-
[Idun/HPC] How to open Jupyter Notebook on HPC on your local computerMiscellaneous 2021. 4. 19. 11:13
- Run Jupyter Notebook on a terminal in your server terminal by
jupyter notebook --no-browser
. - Run
ssh -L <your_port>:localhost:8888 <username>@<DNS>
on your local terminal. For example,ssh -L 8000:localhost:8888 daesool@idun-login1.hpc.ntnu.no
. - Copy
http://localhost:8888/?token=...
from the server terminal, and change8888
to8000
, and enter that on your local browser.
Reference
[1] Lee, D., 2020, "[AWS] how to set up python and jupyter notebook" (link)
'Miscellaneous' 카테고리의 다른 글
power point, bullet list, unbold (0) 2021.04.22 Idun (HPC) at NTNU (0) 2021.04.18 Supplement from 2021.03.27 meeting with Prof. Aune (0) 2021.03.31 - Run Jupyter Notebook on a terminal in your server terminal by