要修改Jupyter Notebook 的默认浏览器和默认工作路径,首先要找到它的配置文件,在命令行cmd中输入如下命令:jupyter notebook --generate-config找到jupyter_notebook_config.py位置,然后
在C:\Users\54573.jupyter\jupyter_notebook_config.py里修改即配置文件位置,可以用记事本打开
import webbrowser
webbrowser.register('chrome',None,webbrowser.GenericBrowser(u'C:\\Users\\86198\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe'))
c.NotebookApp.browser = 'chrome'
GenericBrowser后为Chrome的文件位置