Comment changer le navigateur Jupyter

'''How to change the default browser used by the ipython/jupyter'''

#Step 1: To open Anaconda Prompt from the Start Menu and type
#This will generate the file ~/.jupyter/jupyter_notebook_config.py
jupyter notebook --generate-config

#Step 2: Edit this file and change the following line (chrome is also is also in a local installation)
c.NotebookApp.browser = u'C:/Home/AppData/Local/Google/Chrome/Application/chrome.exe %s'
futurespoir