Home >Backend Development >Python Tutorial >How to install Scipy on Windows when encountering \'no lapack/blas resources found\' error?
Resolving Lack of Lapack/Blas Issue during Scipy Installation on Windows
When attempting to install Scipy using pip in an offline environment on Windows 7, you may encounter the error:
numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
Solution:
To address this issue, it is recommended to utilize the precompiled binaries available at this link:
http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
Once you have downloaded the appropriate file for your system (e.g., scipy-0.16.0-cp27-none-win_amd64.whl), use the following pip command to install:
pip install [Local File Location]\[Your specific file]
Prerequisites:
Before proceeding, ensure that the following prerequisites are met:
By following these steps, you should be able to successfully install Scipy on your Windows system and resolve the Lapack/Blas resources error.
The above is the detailed content of How to install Scipy on Windows when encountering \'no lapack/blas resources found\' error?. For more information, please follow other related articles on the PHP Chinese website!