쥬피터도 깔았겠다 전역설정을 해줄까 합니다
설정파일 생성
jupyter notebook --generate-config
pi@rasp-dev:~ $ python3 Python 3.7.3 (default, Apr 3 2019, 05:39:12) [GCC 8.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from notebook.auth import passwd >>> passwd() Enter password: Verify password: 'sha1:9c2727ba23e6:9a4000000aab8444568cb4e8178fb5be0bc3c9bf' >>> |
패스워드를 만들었다 sha 부터 끝까지 입력해야 합니다
sha1:9c2727ba23e6:9a4000000aab8444568cb4e8178fb5be0bc3c9bf
특이하게 --generate-config 옵션을 주면 설정파일이 생성되네요
pi@rasp-dev:~ $ jupyter notebook --generate-config Writing default config to: /home/pi/.jupyter/jupyter_notebook_config.py pi@rasp-dev:~ $ vim .jupyter/jupyter_notebook_config.py 204 #c.NotebookApp.ip = 'localhost' 205 c.NotebookApp.ip = '0.0.0.0' 267 #c.NotebookApp.notebook_dir = '' 268 c.NotebookApp.notebook_dir = '/home/pi/notebook' 273 # configuration option. 274 #c.NotebookApp.open_browser = True 275 c.NotebookApp.open_browser = False 283 # The string should be of the form type:salt:hashed-password. 284 #c.NotebookApp.password = '' 285 c.NotebookApp.password = 'sha1:9c2727ba23e6:9a4000000aab8444568cb4e8178fb5be0bc3c9bf' 295 ## The port the notebook server will listen on. 296 #c.NotebookApp.port = 8888 297 c.NotebookApp.port = 8088 |
그 중에 IP, directory, browser 오픈, 패스워드, 접속포트만 수정했습니다
0.0.0.0 으로 넣어주니 내부 ip가 변경되도 외부에서 접속이 가능하네요
참고
댓글 영역