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?
Asked
Active
Viewed 3,506 times
2

Holden Caulfield
- 55
- 2
- 12
-
Have you gotten any errors when installing? We'll need a bit more info. – TheDetective Aug 03 '17 at 13:19
-
Look [here](https://stackoverflow.com/questions/28190534/windows-scipy-install-no-lapack-blas-resources-found). – TheDetective Aug 03 '17 at 13:32
2 Answers
2
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

Jonas Adler
- 10,365
- 5
- 46
- 73
-
3Anaconda is clearly the best choice for unexperienced users in Python and Windows. – iFlo Aug 03 '17 at 13:25
-