TA的每日心情 | 怒 前天 13:01 |
---|
签到天数: 1643 天 [LV.Master]伴坛终老
|
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
|
|