본문 바로가기

Language/Python

Jupyter 설치 및 실행 방법

====================================================================================

설치 방법

====================================================================================


1. IPython 설치 (이거 안되네. 밑에 2번 쥬피터는 된다. 원격에서)

- http://yujuwon.tistory.com/entry/ipython-%EB%85%B8%ED%8A%B8%EB%B6%81-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0

- 추가적으로 해줄 것

  pip install jupyter

  pip install markupsafe


2. Jupyter 설치

- http://goodtogreate.tistory.com/entry/IPython-Notebook-%EC%84%A4%EC%B9%98%EB%B0%A9%EB%B2%95

- 환경파일 IP만 제대로 등록해주면 됨

- IPTABLES -F 해주기

- vi /root/.jupyter/jupyter_notebook_config.py 파일 수정

- 아래와 같이 설정

c.NotebookApp.ip = '192.168.174.131'
c.NotebookApp.notebook_dir = u'/root/DataScience/
c.NotebookApp.port_retries = 8888




====================================================================================

실행 방법

====================================================================================


1. Jupyter를 설치한 계정으로 들어가서 jupyter notebook을 치고


   ip:8888(default) 로 접속





====================================================================================

Conda 로 설치하다 에러 난 경우

====================================================================================



http://stackoverflow.com/questions/35937956/import-error-when-loading-jupyter-notebook 참조


Try updating conda first:

conda update conda
conda update --all

And then install jupyter as before:

conda install jupyter
shareimprove this answer


'Language > Python' 카테고리의 다른 글

Python에서 효율적인 String Concatenation 방법  (0) 2016.06.30
Python Naming rule  (0) 2016.06.27
파이썬이 느린 이유?  (0) 2016.06.15
Python Decompiler  (0) 2016.05.24
Python + Mysql 연동 (Window)  (0) 2016.05.24