Teddy 스터디 블로그

[Python] Jupyter notebook/lab 원격접속 방법 본문

[삽질로그]/Python

[Python] Jupyter notebook/lab 원격접속 방법

Seungsoo Lee 2021. 3. 27. 03:38

#Jupyter Notebook/Lab을 원격의 클라이언트에서 실행하는 방법입니다. ssh를 통해 원격지의 서버를 이용하여 딥러닝 학습 시킬 때 유용합니다.

 

*jupyter 원격접속 방법:  ( 링크1 , 링크2 )

 

*jupyter 가상환경 커널 사용법: ( 링크1 , 커널 추가/제거:  링크2 )

  - 커널추가 : python -m ipykernel install --user --name [virtualEnv] --display-name "[displayKenrelName]"

  - 커널삭제 : jupyter kernelspec uninstall yourKernel

*jupyter 가상환경에 모듈 설치: (dreamgonfly.github.io/blog/conda-pytorch/)

 

*윈도우에서 jupyter lab 설치: jupyterlab.readthedocs.io/en/stable/getting_started/installation.html

 

*Velog-anaconda 가상환경: 생성/실행/export/종료