im trying to install scikit-learn with docker image! its failed and here is the error:
ImportError: Numerical Python (NumPy) is not installed.
scikit-learn requires NumPy >= 1.8.2.
Installation instructions are available on the scikit-learn website: http://scikit-learn.org/stable/install.html
Failed building wheel for scikit-learn
but in logs just before of scikit-learn pip trying to isntall numpy==1.9.0 and log says its DONE, I even try to install with :
scikit-learn[alldeps]==0.19.1
but nothing is changed! same error
my hole docker image is working well without scikit-learn, my app is running except the scikit-learn parts!
I tried to change the version and install the last version:
scikit-learn[alldeps]
and its ok but I have some incompatibility in my application I need to use the 0.19.1 version, not 0.19.2!
ps: my requirements.txt file is working in my python3 venv (mac and ubuntu)!!!