运行jupyter lab出现“Running as root is not recommended. Use --allow-root to bypass”的解决方法
使用 jupyter notebook --generate-config 命令生成jupyter配置文件,将会提示当前生成的配置文件的存放路径,一般为 ~/.jupyter/jupyter_notebook_config.py
vim ~/.jupyter/jupyter_notebook_config.py打开配置文件,找到 #c.NotebookApp.allow_root = False ,去掉#,并修改为True。
vim命令:
退出:按esc键退出编辑状态,输入:wq字符,按下回车,退出vim命令
保存该文件,使用jupyter notebook重新运行程序。