执行命令 pip uninstall scikit-learn
报错,Cannot uninstall ‘scikit-learn’
具体报错如下:
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.
不能卸载“scikit-learn”。这是一个安装了distutils的项目,因此不能准确地确定哪些文件属于它,这将导致只有部分卸载。
原因
大概率是其他依赖中包含了scikit-learn,如keras
,tensorflow
。
解决办法:
先从本地文件夹中搜索如keras
,tensorflow
等包中是否包含scikit-learn。
若是,则先把这些包卸载掉,然后,找到并删除虚拟环境(以anaconda的虚拟环境为例)中的scikit-learn * .egg-info
文件。
最后,重新安装需要版本的scikit-learn,再安装其他被卸载的依赖包(如keras
)即可。