怎样用谷歌打开jupyter?

用谷歌打开jupyter的方法:(推荐:jupyter使用教程)

我们可以通过配置jupyter的默认浏览器为谷歌来使用谷歌浏览器打开jupyter。

配置方法:

1、打开cmd,在命令行中输入

jupyter notebook --generate-config

 找到配置文件所在的路径

2、根据路径打开: C:Usersasus.jupyterjupyter_notebook_config.py文件

3、在配置文件中添加代码

import webbrowser
webbrowser.register('chrome', None, webbrowser.GenericBrowser(u'C:Users用户名AppDataLocalGoogleChromeApplicationchrome.exe'))
c.NotebookApp.browser = 'chrome'

其中GenericBrowser里的参数是你电脑安装Chrome浏览器的路径。

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

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

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎样用谷歌打开jupyter?