欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pip>error>ERROR: Cannot uninstall ‘xxx‘

程序员文章站 2022-07-14 13:18:39
...

在使用pip安装一些安装包时,偶尔会有一些依赖报错问题…

例:
安装 AAA

pip install AAA

报错 XXX

ERROR: Cannot uninstall 'XXX'. 
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.

此时就是 XXX 无法更新,或其他问题,只要使用pip使用下面的方法重新安装该包

pip install XXX --ignore-installed

然后再次安装 AAA

pip install AAA

问题解决…

相关标签: pip pip