본문 바로가기
건설 정보/Working Tool

Ubuntu에서 chrome일 때 Jupyter notebook 사용하기

by 그로업 2018. 2. 21.

파폭이 아니라, 크롬을 기본 브라우저로 쓰고 있다면,

Jupyter notebook 명령어를 사용해도 크롬만 켜지고 아무것도 안뜨는 황당한 경우가 발생할 수 있다.


Terminal에서 아래와 같이 해결해보자.


jupyter notebook --generate-config

>>> jupyter_notebook_config.py 생성(config file)


~/.jupyter/jupyter_notebook_config.py

>>> 해당 경로로 이동하여 jupyter_notebook_config.py 실행 후,


# c.NotebookApp.browser = ''

>>> 위의 ' ' 안에 /usr/bin/google-chrome 문구를 삽입한다. 즉,


c.NotebookApp.browser = '/usr/bin/google-chrome'

>>> 앞의 #를 없애야 script가 먹힌다.


그러면 크롬을 쓰는 Ubuntu 유저들도 마법과 같이 jupyter notebook을 쓸 수 있게 된다.

댓글