怎么更改jupyter打开的网页?[jupyter使用教程]
更改jupyter打开网页的方法:(推荐:jupyter使用教程)
1、打开cmd,输入jupyter notebook --generate-config查看jupyter_notebook_config.py文件路径
2、根据返回的路径打开 C:UsersAdministrator.jupyterjupyter_notebook_config.py文件
3、在文件中任意位置添加:
import webbrowserwebbrowser.register('2345Explorer', None, webbrowser.GenericBrowser(u'D:Program Files (x86)2345Soft2345Explorer2345Explorer.exe'))
c.NotebookApp.browser = '2345Explorer'
其中GenericBrowser里的参数是你安装的浏览器的路径
设置好之后在cmd里输入 jupyter notebook,你就会发现启动了相应的浏览器。
更多python知识请关注python教程。
以上是 怎么更改jupyter打开的网页?[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/526352.html