Windows Scipy Install: No Lapack/Blas Resources Found
The following link should solve all problems with Windows and SciPy; just choose the appropriate download. I was able to pip install the package with no problems. Every other solution I have tried gave me big headaches.
Source: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Command:
pip install [Local File Location]\[Your specific file such as scipy-0.16.0-cp27-none-win_amd64.whl]
This assumes you have installed the following already:
Install Visual Studio 2015/2013 with Python Tools
(Is integrated into the setup options on install of 2015)Install Visual Studio C++ Compiler for Python
Source: http://www.microsoft.com/en-us/download/details.aspx?id=44266
File Name:VCForPython27.msi
Install Python Version of choice
Source: python.org
File Name (e.g.):python-2.7.10.amd64.msi
My python's version is 2.7.10, 64-bits Windows 7.
- Download
scipy-0.18.0-cp27-cp27m-win_amd64.whl
fromhttp://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
- Open
cmd
- Make sure
scipy-0.18.0-cp27-cp27m-win_amd64.whl
is incmd
's current directory, then typepip install scipy-0.18.0-cp27-cp27m-win_amd64.whl
.
It will be successful installed.