时间:2021-05-22
电脑中装了Firefox和Chrome浏览器,系统默认浏览器是Chrome,希望每次运行Jupyter在Firefox浏览器,而不是系统默的Chrome.
进入cmd,执行jupyter notebook --generate-config,生成jupyter notebook配置文件。
如果jupyter notebook配置文件已经存在,可以在C:\Users\用户名\.jupyter找到文件jupyter_notebook_config.py
打开jupyter_notebook_config.py文件,搜索c.NotebookApp.browser
将#c.NotebookApp.browser = ''修改代码如下
import webbrowser webbrowser.register( "Firefox", None, webbrowser.GenericBrowser("C:/Program Files/Mozilla Firefox/firefox.exe"))c.NotebookApp.browser = "Firefox"也可以通过搜索c.NotebookApp.notebook_dir,修改#c.NotebookApp.notebook_dir = ''代码,更改Jupyter notebook默认打开路径
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
换用非默认浏览器时需要输入密码或token查询方法:在XX:\AnacondaXX\Scripts下运行jupyter-notebook.exelist可得to
写给自己1.首先,确定你的问题是:Jupyter-notebook可以正常运行,但是不弹出默认浏览器,例如下图(只有下图,浏览器死活没动静!):解决方案:1.电
1、远程服务器上安装jupyternotebook(配置jupyter_notebook_config.py文件)sudopipinstalljupyter2、
1.Jupyter默认目录调整首先要找到jupyter生成的配置文件jupyter_notebook_config.py。如果没有,在anacondapromp
jupyternotebook的安装在这里都不赘述可以参考jupyter官网的步骤http://jupyter-notebook.readthedocs.io/