怎么改jupyter的浏览器配置?[jupyter使用教程]
修改jupyter浏览器配置的方法:
打开Anaconda Prompt,输入命令 jupyter notebook --generate-config
得到jupyter_notebook_config.py路径
通过路径在系统中查找到该文件
修改默认浏览器
找到#c.NotebookApp.browser = ''
在其后输入代码
import webbrowserwebbrowser.register("chrome",None,webbrowser.GenericBrowser(u"
C:Program Files (x86)GoogleChromeApplicationchrome.exe"))
c.NotebookApp.browser = 'chrome'
代码中的路径要修改为自己浏览器的路径,浏览器路径可右键浏览器查看属性得到。
推荐学习《python教程》
以上是 怎么改jupyter的浏览器配置?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526251.html