반응형
- $> wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh
- $> bash Anaconda3-5.2.0-Linux-x86_64.sh
- $> source .bashrc
- $>jupyter notebook --generate-config
- $>vi /root/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888
c.NotebookApp.notebook_dir = '/data/jupyter'
6. 실행하기
- 사용자 계정으로 실행
- upyter notebook --config=/root/.jupyter/jupyter_notebook_config.py &
- root 계정으로 실행
- $> nohup jupyter notebook --config=/root/.jupyter/jupyter_notebook_config.py --allow-root &
7. $>jupyter notebook list (토큰 값 알기)
8. http://111.222.333.444(서버아이피):8888/?token=545(7번에서 얻은 토큰 값을 입력함)
반응형
'IT' 카테고리의 다른 글
매직 마우스 내돈내산 개봉기 (1) | 2023.04.12 |
---|---|
쿼리를 동적으로 조회하기 (0) | 2023.01.07 |
Spring 에서 MyBatis로 DB연결 (0) | 2022.11.14 |
webjars 못 불러 올때 처리방법 (0) | 2022.10.27 |
[Spring 강좌]CSV 생성 후 다운로드 하기 (2) | 2022.10.24 |