Holden Caulfield
Holden Caulfield

Reputation: 55

Installing SciPy on windows

I have problems with installing SciPy on windows. I've already tried pip install (which worked for NumPy) but it didn't work out. Any idea how to solve this problem?

Upvotes: 2

Views: 3532

Answers (2)

Jonas Adler
Jonas Adler

Reputation: 10761

I recommend installing Anaconda which is a binary distribution system, which means that you don't need to compile yourself. Overall I find this to be a far easier way to handle packages on windows.

Using Anaconda, you can install scipy via:

conda install scipy

Upvotes: 2

iFlo
iFlo

Reputation: 1484

A good way with those kind of packages (scipy, numpy, ...) on Windows is to download (unoficial) binaries from this website and install it from here.

Once download, you can install it using pip :

pip install scipy-package.whl

Upvotes: 1

Related Questions