Tip : windows下修改jupyter notebook默认启动浏览器
Posted hanxinle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tip : windows下修改jupyter notebook默认启动浏览器相关的知识,希望对你有一定的参考价值。
C:/user/hipo/.jupyter,执行
jupyter notebook --generate-config
生成 jupyter_notebook_config.py ,搜索 “browser”,在
# c.NotebookApp.browser =‘‘
下方插入以下代码:
import webbrowser webbrowser.register("chrome", None, webbrowser.GenericBrowser(u"C:\Users\hipoker\AppData\Local\Google\Chrome\Application\chrome.exe")) c.NotebookApp.browser = ‘chrome‘
保存,终端输入 jupyter notebook 启动 chrome网页。
PS: Consolas 视觉上舒服,Comic Sans MS 字体则比较可爱。
以上是关于Tip : windows下修改jupyter notebook默认启动浏览器的主要内容,如果未能解决你的问题,请参考以下文章
Windows下jupyter notebook 修改打开的浏览器
Windows下基于Python3安装Ipython Notebook(即Jupyter)。python –m pip install XXX