https://jupyter-notebook.readthedocs.io/en/stable/public_server.html
https://goodtogreate.tistory.com/entry/IPython-Notebook-%EC%84%A4%EC%B9%98%EB%B0%A9%EB%B2%95
c = get_config()
c.NotebookApp.password = ' ' # 비밀번호 생성 후, 얻은 hash key 기입
c.NotebookApp.open_browser = 'False' # 원격 서버에서 browser를 열 필요가 없으므로 False
c.NotebookApp.ip = ' ' # 원격 서버의 내부 IP 기입
c.NotebookApp.notebook_dir = ' ' # ipynb를 저장, 관리할 디렉토리 기입
c.NotebookApp.port = ' ' # 접속을 허용할 포트를 설정
이제 원격 서버에서 jupyter notebook을 실행하고, '외부ip:포트/tree'로 접속을 시도하면 접속이 될 것이다
'개발 > Python' 카테고리의 다른 글
Python autocomplete (0) | 2020.04.12 |
---|---|
영상 보간법(Interpolation) (0) | 2020.01.07 |
kaggle output file 다운 받기 (0) | 2019.08.09 |
Python 고유 디버거 Pdb 사용하기 (0) | 2019.07.27 |
Seaborn으로 plot을 그리는데 kernel Dead? (0) | 2019.07.26 |