Jupyter Notebook修改默认浏览器方法

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

你可能感兴趣的:(QA,python,开发语言,jupyter)