windows 安装python的scipy库,报错error: no lapack/blas resources found

如果使用pip install 包名安装出错如下错误,可以尝试使用如下的库链接下载 .whl 文件,再使用pip install whl的路径进行离线安装。
    
    
    
    
C:\Users\xxx>easy_install scipy
Searching for scipy
Reading https://pypi.python.org/simple/scipy/
Best match: scipy 0.17.0
Downloading https://pypi.python.org/packages/source/s/scipy/scipy-0.17.0.zip#md5=28a4fe29e980804db16
2524f10873211
Processing scipy-0.17.0.zip
Writing C:\Users\xxx\AppData\Local\Temp\easy_install-ldksnjz7\scipy-0.17.0\setup.cfg
Running scipy-0.17.0\setup.py -q bdist_egg --dist-dir C:\Users\xxx\AppData\Local\Temp\easy_install-
ldksnjz7\scipy-0.17.0\egg-dist-tmp-p5kr2ici
D:\Python34\lib\site-packages\numpy\distutils\system_info.py:1552: UserWarning:
Atlas (http://math-atlas.sourceforge.net/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [atlas]) or by setting
the ATLAS environment variable.
warnings.warn(AtlasNotFoundError.__doc__)
D:\Python34\lib\site-packages\numpy\distutils\system_info.py:1563: UserWarning:
Lapack (http://www.netlib.org/lapack/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [lapack]) or by setting
the LAPACK environment variable.
warnings.warn(LapackNotFoundError.__doc__)
D:\Python34\lib\site-packages\numpy\distutils\system_info.py:1566: UserWarning:
Lapack (http://www.netlib.org/lapack/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [lapack_src]) or by setting
the LAPACK_SRC environment variable.
warnings.warn(LapackSrcNotFoundError.__doc__)
Running from scipy source directory.
error: no lapack/blas resources found


下载库的链接
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pycairo

你可能感兴趣的:(windows 安装python的scipy库,报错error: no lapack/blas resources found)