ERROR: Cannot uninstall 'scikit-learn'的解决方法

转载链接:https://blog.csdn.net/qq_44091004/article/details/105440464

ERROR: 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.

python在卸载第三方库scikit-learn时,出现上面的问题。解决方案如下:
1.pip install --ignore-installed scikit-learn ,这样旧版本和新版本的第三方库会同时存在,很可能造成交叉引用的问题,而且切换有些繁琐。但可以解决上面问题
2.在我的anoconda环境下找到D:\Anoconda\Lib\site-packages,在此目录下搜索scikit_learn*.egg-info文件删除。(表示通配符),举例说明:我删除了scikit_learn-0.19.0-py3.6.egg-info文件
然后再cmd里运行:
pip install scikit-learn==0.20.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
这样就成功卸载掉之前版本的第三方库,然后升级指定版本的第三方库。所以第三方库都可以类比此方法进行修改。若没有anoconda集成开发环境也出现此问题,可在相应的python安装目录如D:\python\Lib\site-packages下找到
*(第三方库名字+相应版本信息).egg-info** 文件进行删除。然后再次安装就行了。

你可能感兴趣的:(python,anaconda,pip,机器学习)