1. 패스워드를 준비 한다.

In [1]: from notebook.auth import passwd

In [2]: passwd()
Enter password: 
Verify password: 
Out[2]: 'sha1:f24baff49ac5:863dd2ae747212ede58125302d227f0ca7b12bb3'

2. config 파일 생성하고 config 파일을 오픈한다.

[~/work/python]# jupyter notebook --generate-config Writing default config to: /Users/tommy/.jupyter/jupyter_notebook_config.py [~/work/python]# vi /Users/tommy/.jupyter/jupyter_notebook_config.py


3.  다음 내용을 입력한다.

# Password to use for web authentication
c = get_config()
c.NotebookApp.password =
u'sha1:f24baff49ac5:863dd2ae747212ede58125302d227f0ca7b12bb3'


4.  다시 시작하고 접속해보면 암호를 물어보기 시작한다. 



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


'Jupyter' 카테고리의 다른 글

Jupyter에서 마크다운을 써보자  (0) 2016.08.25
Python 시각화 관련 링크 모음  (0) 2016.08.25
Jupyter 시작하기  (0) 2016.08.24


간단히 써보니 마크다운 입력하고 Ctrl+Enter치면 입력한 내용이 랜더링되어 보기 좋게 나온다. 

리포트 형식으로 제공할 때 요긴할 것 같다.


참고 링크

http://jupyter-notebook.readthedocs.io/en/latest/examples/Notebook/Working%20With%20Markdown%20Cells.html


'Jupyter' 카테고리의 다른 글

jupyter 암호 설정하기  (0) 2016.11.15
Python 시각화 관련 링크 모음  (0) 2016.08.25
Jupyter 시작하기  (0) 2016.08.24


seabord

https://stanford.edu/~mwaskom/software/seaborn/index.html


pandas

http://pandas.pydata.org/pandas-docs/version/0.15.0/visualization.html


'Jupyter' 카테고리의 다른 글

jupyter 암호 설정하기  (0) 2016.11.15
Jupyter에서 마크다운을 써보자  (0) 2016.08.25
Jupyter 시작하기  (0) 2016.08.24


Jupyter 설치 후 커맨드 라인에서 다음과 같이 입력하면 Jypyter가 실행된다.


$ jupyter notebook



'Jupyter' 카테고리의 다른 글

jupyter 암호 설정하기  (0) 2016.11.15
Jupyter에서 마크다운을 써보자  (0) 2016.08.25
Python 시각화 관련 링크 모음  (0) 2016.08.25

+ Recent posts