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
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.
python setup.py install
python setup.py build_ext --inplace
(Much of scikit-learn is actually implemented in Cython, C or C++. You need C and C++ compilers to install it from source.)