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

1 pip安装包时报错

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual

2 解决方法

执行如下两个命令
python3 -m venv tutorial-env
source tutorial-env/bin/activate
再次执行
python -m pip install novas
pip install --upgrade pip

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