怎么设置jupyter打开的浏览器?[jupyter使用教程]

python

设置jupyter打开的浏览器:(推荐:jupyter使用教程)

1、打开anaconda prompt

2、输入jupyter notebook --generate-config

3、显示出jupyter_notebook_config.py 文件所在目录。找到这个文件,用记事本打开。

4、修改配置

在 # c.NotebookApp.browser = '''' 后加入下面语句块:

import webbrowser

webbrowser.register("chrome",None,webbrowser.GenericBrowser

(u"C:ProgramFiles(x86)GoogleChromeApplicationchrome.exe"))

c.NotebookApp.browser = 'chrome'

即可设置jupyter打开的浏览器为chrome。

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

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

回到顶部