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

pip install xxx显示错误cannot uninstall xxx

程序员文章站 2022-07-14 13:17:57
...

转载自“Cannot uninstall ‘xxx’"的解决方案

在安装一些python的库的时候,经常会碰到这样的错误,例如在使用指令pip insall tensorlayer时,会出现如下的报错:
Cannot uninstall 'scikit-learn'. 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.
一般这种情况下,出错的东西其实是你已经安装过了的,然后你会发现你想卸载也卸载不掉。如果实在找不出别的方法来处理的话,可以试着忽略这个错误。所以可以这样处理:

pip install --ignore-installed scikit-learn

    等它完成之后,再pip insall tensorlayer会发现顺利通过。其他的库要是遇到类似的错误,也可以这样解决。

    相关标签: python

    上一篇: POSIX定时器

    下一篇: 定时器timer