<Python, iPython> ipython notebookで起動ブラウザを指定
ipython notebook
で起動ブラウザを指定する方法。
ipython_config.py
に下記を書き込む。(firefoxの場合)
c.NotebookApp.browser = u'/usr/bin/firefox %s'
ipyhton_config.py
はprofile
がdefault
ならば下記にあるはず。
/home/hage/.ipython/profile_default
マニュアル。
IPython notebook options — IPython 3.2.1 documentation
あるいは、
ipython notebook --browser=/usr/bin/firefox
でも立ち上がる。
stackoverflow
stackoverflow.com
16/2/24 追記
Windows
+ msys2
の場合。
export="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
としてから、jupyter notebook
をすれば動く。