美文网首页
Anaconda-Jupyter notebook 如何设置默认

Anaconda-Jupyter notebook 如何设置默认

作者: 长安月下赏美人儿 | 来源:发表于2019-01-15 21:58 被阅读0次

安装jupyter notebook经历了前所未有的波折,好在秉着不断折腾的精神,终于搞定。

(1)如何使得jupyter notebook的默认打开浏览器为chrome?

Step1:打开文件 jupyter_notebook_config.py (C:\Users\Administrator\.jupyter 中)

Step2:找到 # c.NotebookApp.browser = ''''

Step3:在找到的那条记录(貌似在73行)下方添加:

                      import webbrowser

                      webbrowser.register("chrome", None, webbrowser.GenericBrowser(u"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"))

                      c.NotebookApp.browser = 'chrome'

注意:在添加的命令行中,加粗的部分每个人安装的路径不一致,可根据自身的情况来进行更改,且谨记要将“\”更改为“\\”。

Step4:设置完成后,再次打开jupyter notebook,如果依旧失败,则要设置电脑默认浏览器为chrome。

相关文章

网友评论

      本文标题:Anaconda-Jupyter notebook 如何设置默认

      本文链接:https://www.haomeiwen.com/subject/lgyudqtx.html