但我可以写 jupyter-lab --browser="Chrome"就会用chrome打开
并修改jupyter_notebook_config.py在文末添加如下内容(首行不要有缩进): import webbrowser webbrowser.register('chrome',None, webbrowser.GenericBrowser(u'C:\Program Files\Google\Chrome\Application\chrome.exe')) c.NotebookApp.browser ='chrome' c.NotebookApp.notebook_dir = 'F:\jupyter'...
1.找到jupyter notebook的配置文件jupyter_notebook_config.py 以管理员身份打开cmd,执行以下命令: jupyter notebook --generate-config jupyter notebook 配置文件 2.以记事本方式打开以上文件,Ctrl + F 搜索 c.NotebookApp.browser,如下图: jupyter notebook配置文件内容 3.获取Chrome安装位置 chrome浏览器安装位置...
windows10系统,启动Jupyter notebook时,不能自动打开浏览器。 软件版本 (base) C:\Windows\system32>jupyter --version Selected Jupyter core packages... IPython : 7.29.0 ipykernel : 6.4.1 ipywidgets : 7.6.5 jupyter_client : 6.1.12 jupyter_core : 4.8.1 jupyter_server : 1.4.1 jupyterlab : ...
2、在anaconda prompt里面输入:jupyter notebook --generate-config 回车后会生成一个配置文件jupyter_notebook_config.py,会提示该文件所在的目录。 3、找到并打开这个文件,需要在这个文件设置默认浏览器处增加Chrome,找到如下代码(95-99行): ## Specify what command to use to invoke a web browser when opening...
找到Jupyter 的安装目录下的打开配置文件jupyter_notebook_config.py 记得安装目录,直接找 参考未安装时的方法1 在文件资源管理器中搜索,很慢 使用Everything 软件搜 老版找到# c.NotebookApp.browser =,在下面编辑插入以下代码块。 # 老版importwebbrowser ...
回车后会生成一个配置文件jupyter_notebook_config.py,会提示该文件所在的目录,我的在:C:/user/.jupyter下面。 3、找到并打开这个文件,需要在这个文件设置默认浏览器处增加Chrome,找到如下代码(95-99行): ## Specify what command to use to invoke a web browser when opening the notebook. ...
jupyter notebook --generate-config 根据配置文件的路径,打开文件夹,右键jupyter_notebook_config.py文件,选择打开方式中的记事本打开 使用记事本打开配置文件后。利用Ctrl+F快捷键调出查找框查找c.NotebookApp.browser,找到对应的位置。2.获取谷歌浏览器的安装位置 现在我们在电脑桌面上找到谷歌浏览器的图标,右键...
# restore default theme # NOTE: Need to delete browser cache after running jt -r # If this doesn't work, try starting a new notebook session. jt -r # toggle toolbar ON and notebook name ON jt -t grade3 -T -N # toggle kernel logo. kernel logo is in same container as name ...
安装Jupyter Notebook的前提是需要安装了Python(3.3版本及以上,或2.7版本)。 ② 使用Anaconda安装 如果你是小白,那么建议你通过安装Anaconda来解决Jupyter Notebook的安装问题,因为Anaconda已经自动为你安装了Jupter Notebook及其他工具,还有python中超过180个科学包及其依赖项。