怎么改变jupyter浏览器?[jupyter使用教程]

python

改变jupyter浏览器的方法:(推荐:jupyter使用教程)

1、启动cmd,执行以下命令,查看 jupyter 配置文件路径

jupyter notebook --generate-config

2、执行命令后,会在如下所示路径的文件夹中找到新建立的Jupyter_notebook_config.py文件。

3、默认浏览器修改

打开Jupyter_notebook_config.py文件,找到c.NotebookApp.browser = '',在下方输入:

import webbrowser

webbrowser.register("chrome",None,webbrowser.GenericBrowser(u"C:ProgramFiles(x86)GoogleChromeApplicationchrome.exe"))

c.NotebookApp.browser = 'chrome'

即可将默认使用的浏览器设置为chrome浏览器。

更多python知识请关注python教程。

以上是 怎么改变jupyter浏览器?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526717.html

回到顶部