Hi I\'m trying to follow the machine learning 101 tutorial provided by sklearn, and I keep running into an error.
I have the most the sklearn version downloaded from he
Copy paste answer from different question: In case you are using the binaries from http://www.lfd.uci.edu/~gohlke/pythonlibs/#scikit-learn. They require numpy-MKL, as indicated on the download page. The official numpy binaries won't work.
You forgot to compile. Run python setup.py install
in the source directory, or python setup.py build_ext --inplace
, or grab a binary distribution.
(Much of scikit-learn is actually implemented in Cython, C or C++. You need C and C++ compilers to install it from source.)