Python jupyter安装的一些注意事项

在Linux下安装jupyter需要注意首次启动可能会报错:Running as root is not recommended. Use --allow-root to bypass.

按照大白话来说,就是以root身份运行不推荐,请在启动的命令后添加 Use --allow-root to bypass,也就是 运行

:jupyter notebook root--allow-root to bypass.然而这样并没有卵用。

 

运行该命令后:jupyter notebook --generate-config,将会提示写入配置文件jupyter_notebook_config.py并给出路径。修改该配置文件,该文件为py结尾的,将包含allow_root的这行注释去掉并修改参数为True。见下图:

Python jupyter安装的一些注意事项_运维


 

 

Python jupyter安装的一些注意事项_ubuntu_02

第二图显示,jupyter运行的网址,并提示想要退出该程序请按Ctrl+c

Python jupyter安装的一些注意事项_python_03

第三个图显示,jupyter所使用的密码保存路径,该程序内核编号,编辑的文件保存路径, Saving file at /Untitled.ipynb。

总结:如果出现权限建议问题,先运行jupyter notebook --generate-config。生成配置文件,配置文件路径/root/.jupyter/jupyter_notebook_config.py。vim打开文件,定位到allow_root所在行,也就是#c.NotebookApp.allow_root = False ,将该行注释去掉,参数改为True,重启jupyter即可。