win7 64安装python2.7.11 和 scikit-learn

学习借鉴:
http://www.itnose.net/detail/6418241.html
http://blog.csdn.net/u011736505/article/details/51160831

ImportError: No module named sklearn 未安装sklearn包
ImportError: DLL load failed: 找不到指定的模块
ImportError: DLL load failed: The specified module could not be found
Microsoft Visual C++ 9.0 is required Unable to find vcvarsall.bat
Numpy Install RuntimeError: Broken toolchain: cannot link a simple C program
ImportError: numpy.core.multiarray failed to import
ImportError: cannot import name __check_build
ImportError: No module named matplotlib.pyplot
一. 安装过程–-安装顺序和版本的重要性****

使用”pip install scikit-learn”命令安装的Scikit-Learn程序,并没有注意需要安装Numpy、Scipy、Matlotlib,安装顺序很重要!!!
出现错误:
ImportError: DLL load failed: 找不到指定的模块”
解决方法是:
重点:安装python第三方库时总会出现各种兼容问题,应该是版本问题,版本需要一致。

第一步:卸载原始版本,包括Numpy、Scipy、Matlotlib、Scikit-Learn
pip uninstall scikit-learn
pip uninstall numpy
pip uninstall scipy
pip uninstall matplotlib

第二步:不使用”pip install package”或”easy_install package”安装,或者去百度\CSDN下载exe文件,而是去到官网下载相应版本。
http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib
http://www.lfd.uci.edu/~gohlke/pythonlibs/#scikit-learn
只能重新安装

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