I have been trying to install SciPy in PyCharm on Windows 7. But the installation process failed with the following error message.
For anybody searching this.
Download:
Numpy + MKL from: http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy Make sure you select your version of python (mine is 3.6, hence I use: obspy‑1.0.3‑cp36‑cp36m‑win32.whl)
Then download Scipy from: http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy (again 3.6 is: scipy‑1.0.0b1‑cp36‑cp36m‑win32.whl)
open up your folder containing pip in command prompt as admin:
pip install C:/user/Daniel/obspy‑1.0.3‑cp36‑cp36m‑win32.whl
pip install C:/user/Daniel/scipy‑1.0.0b1‑cp36‑cp36m‑win32.whlhl
The PyCharm should automatically find it.
Apologies posting on a dead-thread.