user3616359
user3616359

Reputation: 399

Problems with installing scipy with pip on Windows?

I have started working on python, and now, I want to solve real scientific problems for which SciPy is required. I have tried to install SciPy with:

pip install scipy-0.16.0-cp34-none-win_amd64.whl

and I got message that SciPy is installed successfully. However, when I want to import SciPy the error is:

raise ImportError("Numpy OpenBLAS flavour is needed for this scipy build.") ImportError: Numpy OpenBLAS flavour is needed for this scipy build.

I am using Windows OS, and I am using Eclipse+PyDev as an IDE. What makes this sort of problem? And how can I solve it?

Upvotes: 1

Views: 1276

Answers (2)

Jonathan Allan
Jonathan Allan

Reputation: 437

Download and install the wheel for numpy with OpenBLAS from https://pypi.anaconda.org/carlkl/simple/numpy/

Upvotes: 0

frankenapps
frankenapps

Reputation: 8321

Have you tried to install NumPy which is an requirement for SciPy?

You can download it here: Python Packages For Windows

Upvotes: 1

Related Questions