Home >Backend Development >Python Tutorial >Here are a few question-based article titles based on your content: * **Windows Scipy Installation Error: Why Can\'t I Find Lapack/Blas Resources?** * **Scipy Installation on Windows 7: How to Overc
Windows Scipy Install: No Lapack/Blas Resources Found
Unable to install Scipy due to missing Lapack/Blas resources? Don't despair! Here's the ultimate solution for solving this error on Windows 7.
Troubleshooting the Error
The error "numpy.distutils.system_info.NotFoundError: no lapack/blas resources found" indicates that the necessary Lapack/Blas libraries are not available during Scipy installation. Despite having Microsoft Visual Studio C installed and successfully installing other packages, this issue can persist.
Avoid Binary Installations
Using the Windows binary installation method is not necessary. Here's a step-by-step guide to resolve the issue:
Install Using Pip: Navigate to the download location and run the following command:
pip install [Local File Location]\[Your specific file such as scipy-0.16.0-cp27-none-win_amd64.whl]
Additional Requirements
Ensure that the following prerequisites are met before proceeding:
By following these steps, you can successfully install Scipy without encountering the Lapack/Blas error on Windows 7.
The above is the detailed content of Here are a few question-based article titles based on your content: * **Windows Scipy Installation Error: Why Can\'t I Find Lapack/Blas Resources?** * **Scipy Installation on Windows 7: How to Overc. For more information, please follow other related articles on the PHP Chinese website!