본문 바로가기

IT

Jupyter notebook ,설치 및 실행하기

반응형
  1. $> wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh
  2. $> bash Anaconda3-5.2.0-Linux-x86_64.sh
  3. $> source .bashrc
  4. $>jupyter notebook --generate-config
  5. $>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번에서 얻은 토큰 값을 입력함)

반응형