I would like to keep firefox as my system default browser on my Mac, but launch IPython Notebook in Chrome[1].
This answer led me to my ipython_notebook
For future reference, this works looks the most elegant way to edit jupyter_notebook_config.py
for me on macOS:
c.NotebookApp.browser = u'open -a "Google Chrome" %s'
You can obviously replace
"Google Chrome"
with any other browser.
Full procedure:
jupyter notebook --generate-config
open ./jupyter/jupyter_notebook_config.py
#c.NotebookApp.browser
and edit it as above