Reputation: 55
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
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