码迷,mamicode.com
首页 > 编程语言 > 详细

Python: 安装 sklearn 包出现错误的解决方法

时间:2019-04-30 14:19:26      阅读:1798      评论:0      收藏:0      [点我收藏+]

标签:rgb   ipy   权限   only   png   指令   res   出现   can   

今天在安装python 的 sklearn 包时出现了 Cannot uninstall ‘numpy‘ 和 Cannot uninstall ‘scipy‘ 错误,下面记录了我尝试了很多网上的方法后最终成功的解决方法。

 

终端执行 pip install scikit-learn 后,出现 Cannot uninstall ‘numpy‘. 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 pip install --upgrade --ignore-installed --install-option --install-data=/usr/local numpy 后成功更新 numpy,再次执行 pip install scikit-learn ,出现

Cannot uninstall ‘scipy‘. 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 pip install --upgrade scipy --ignore-installed six ,成功更新 scipy。

再次执行 pip install scikit-learn 后出现权限问题,运行 sudo pip install scikit-learn ,成功安装 sklearn包(见下图)。

技术图片

另外,我在 Python 3 下安装 scikit-learn 没有出现该类错误,可能是因为 numpy 和 scipy 的版本够高。若是要在 python 3 下安装,前面的指令中 pip 用 pip3 替代。

 

Python: 安装 sklearn 包出现错误的解决方法

标签:rgb   ipy   权限   only   png   指令   res   出现   can   

原文地址:https://www.cnblogs.com/zhenqichai/p/fix-pip-install-sklearn-problem.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!