问题
Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager
以“根”用户运行pip可能会导致权限中断和与系统包管理器的行为冲突
解决
建立虚拟环境,基于Centos7
python3 -m venv tutorial-env
source tutorial-env/bin/activate
然后在里面执行你的命令即可
退出虚拟环境
退出venv 环境,使用 deactivate 命令:deactivate
评论 (0)