I'm trying to set all of this up on Windows 7. This is the error I get when I try to import sklearn or scipy. I've installed sklearn and scipy using whl files. I don't remember what I used to install numpy but I can import numpy without trouble.

I'm trying to set all of this up on Windows 7. This is the error I get when I try to import sklearn or scipy. I've installed sklearn and scipy using whl files. I don't remember what I used to install numpy but I can import numpy without trouble.

In my case I couldn't install scipy using pip install scipy, I finally managed to get it installed by using Scipy from here, and installing it as follows:
pip3 install scipy-0.19.0rc2-cp36-cp36m-win_amd64.whl
When I finally had scipy installed, my numpy stopped working and started giving that error. So I decided to install numpy from here:
pip3 install numpy-1.12.0+mkl-cp36-cp36m-win_amd64.whl
Make sure that you install the correct numpy for your architecture and version of Python.
I hope that helps you, cheers.