<Python, iPython> ipython notebookで起動ブラウザを指定

ipython notebookで起動ブラウザを指定する方法。
ipython_config.pyに下記を書き込む。(firefoxの場合)

c.NotebookApp.browser = u'/usr/bin/firefox %s'

ipyhton_config.pyprofiledefaultならば下記にあるはず。

/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をすれば動く。