I\'m on a Mac, and I installed numpy and sklearn in that order. Now, I\'m faced with these errors that have already been mentioned on SO several t
numpy
sklearn
I guess you are using MAC OS. I did a workaround to ignore the existing version of numpy (which MAC won't let you uninstall), and install an upgraded version.
Command :
pip install --upgrade --ignore-installed --install-option '--install-data=/usr/local' numpy
Worked fine for me.