pip报错:WARNING: Running pip as the ‘root‘ user can result in broken permissions and conflicting

当我们使用pip安装库的时候,经常会碰到这种情况,提示以“root”用户身份运行 pip 可能会导致权限损坏和冲突,因为这个问题,导致我们无法更新pip或下载库失败

pip报错:WARNING: Running pip as the ‘root‘ user can result in broken permissions and conflicting_第1张图片

这个问题的解决方案是建立一个虚拟环境中,自所载目录树

首先我们需要找到我们的pip安装位置,然后cd过去在该路径执行以下命令

find / -name pip-*

1.创建一个虚拟环境中,决定在目录里你想要的把它和运行的 venv 模块作为一个脚本

python3 -m venv tutorial-env

2.linux

source tutorial-env/bin/activate

命令执行后没有回显,就可以进行更新及安装库等操作了

下载成功

 pip报错:WARNING: Running pip as the ‘root‘ user can result in broken permissions and conflicting_第2张图片

退出venv 环境,使用 deactivate 命令:deactivate 

你可能感兴趣的:(pip,python,linux)