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

后端 未结 19 2348
盖世英雄少女心
盖世英雄少女心 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:52

    The following also works for me. I give it a full path to chrome, plus %s at the end.

    jupyter notebook --browser='C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
    

    If chrome is in the PATH environment variable, the following might work too.

    jupyter notebook --browser=chrome
    

提交回复
热议问题