jupyter notebook默认浏览器的设置

2022-04-24 17:47:30 浏览数 (1)

长时间没有使用jupyter notebook了,今天一打开,发现默认是使用IE浏览器打开。作为开发人员,相信绝大部分开发人员都是习惯于使用Google Chrome浏览器,因此要设置为默认使用Chrome浏览器打开。搞定后,具体步骤记录一下。

1.找到jupyter notebook的配置文件jupyter_notebook_config.py

以管理员身份打开cmd,执行以下命令:

jupyter notebook --generate-config

 jupyter notebook 配置文件 jupyter notebook 配置文件

2.以记事本方式打开以上文件,Ctrl F 搜索 c.NotebookApp.browser,如下图:

jupyter notebook配置文件内容jupyter notebook配置文件内容

3.获取Chrome安装位置

chrome浏览器安装位置chrome浏览器安装位置

4.加入设置语句块

c.NotebookApp.browser = ''后面,即第2部分中红框框住的空白位置加入下面语句块:

import webbrowser

webbrowser.register("chrome",None,webbrowser.GenericBrowser(u"C:Program Files (x86)GoogleChromeApplicationchrome.exe"))

c.NotebookApp.browser = 'chrome'

重启

Jupyter_notebook就会默认使用

Chrome浏览器打开了。

【小结】

日拱一卒,终究会有所收获。

0 人点赞