删除所有 pip 包

Remove all pip packages

我正在使用 Linux/Manjaro KDE。

由于我不熟悉 Venv,我在我的全局安装了 50 多个包,并不是所有的包都冲突。 为了清理所有 pip 包,我尝试了这个命令:

pip freeze | xargs pip uninstall

甚至这个:

python -m pip freeze > requirements.txt
python -m pip uninstall -r requirements.txt

在这两种情况下,我都会收到此错误:

ERROR: Cannot uninstall 'apparmor'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

然后进度就会中断。 有什么解决办法吗?

我可以像这样删除所有内容: 获取房间权限:

sudo su

然后删除了此位置上的所有内容:

/usr/local/lib/python3.9/site-packages/