Jupyter Notebook修改默认浏览器方法
- Create a Jupyter Notebook Config file
jupyter notebook --generate-config
- 打开配置文件
.jupyter/jupyter_notebook_config.py
找到c.NotebookApp.browser
改成只向自己喜欢的浏览器路径’,这里给出选择google浏览器方法:
c.NotebookApp.browser = '/usr/bin/google-chrome'
- 使用
which
命令寻找浏览器位置的方法:
which firefox
/usr/bin/firefox
which google-chrome
/usr/bin/google-chrome