怎么设置jupyter打开的浏览器?

设置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教程。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么设置jupyter打开的浏览器?