How to change the default browser used by jupyter notebook in windows

后端 未结 19 2346
盖世英雄少女心
盖世英雄少女心 2020-12-04 10:17

I\'m on a windows machine without admin right and I would like to run jupyter on chrome, while the default browser is another.

I have a local installation of the Ana

19条回答
  •  一整个雨季
    2020-12-04 10:51

    Open anaconda prompt and type

    jupyter notebook --generate-config
    

    then go to "jupyter_notebook_config.py" path and add following line

    c.NotebookApp.browser = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
    

提交回复
热议问题