怎么更改jupyter默认浏览器?[jupyter使用教程]
更改jupyter默认浏览器的方法:(推荐:jupyter使用教程)
1、命令行下面运行 jupyter notebook --generate-config 命令,这样会在你的硬盘 C:UsersAdministrator.jupyter 下产生一个配置文件jupyter_notebook_config.py。
用Notepad++或者IPython打开文件,对文件修改如下:
2、默认浏览器修改
找到c.NotebookApp.browser = '',在下方输入
import webbrowserwebbrowser.register("chrome",None,webbrowser.GenericBrowser(u"C:ProgramFiles(x86)GoogleChromeApplicationchrome.exe"))
c.NotebookApp.browser = 'chrome'
即可设置默认浏览器为chrome。
更多python知识请关注python教程。
以上是 怎么更改jupyter默认浏览器?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526771.html