Home  >  Article  >  Backend Development  >  ## How to Fix the \"No Lapack/Blas Resources Found\" Error When Installing Scipy on Windows?

## How to Fix the \"No Lapack/Blas Resources Found\" Error When Installing Scipy on Windows?

Linda Hamilton
Linda HamiltonOriginal
2024-10-25 00:58:30812browse

## How to Fix the

Scipy Installation Error on Windows: "No Lapack/Blas Resources Found"

When attempting to install Scipy on a 64-bit Windows 7 system, users may encounter the error message "numpy.distutils.system_info.NotFoundError: no lapack/blas resources found." This indicates that the necessary libraries for linear algebra computations are not detected.

To resolve this issue, follow the recommended approach:

Download and Install Prebuilt Binaries

  1. Visit the following website: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
  2. Select the latest Scipy binary package compatible with your Python version and Windows architecture (e.g., scipy-0.16.0-cp27-none-win_amd64.whl).
  3. Install the downloaded package using the following command:
pip install [Local File Location]\[Your specific file such as scipy-0.16.0-cp27-none-win_amd64.whl]

Prerequisites

Ensure that the following prerequisites are met before installing Scipy:

  1. Visual Studio 2015/2013 with Python Tools installed
  2. Visual Studio C Compiler for Python installed
  3. A compatible version of Python installed

The above is the detailed content of ## How to Fix the \"No Lapack/Blas Resources Found\" Error When Installing Scipy on Windows?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn