ImportError: No module named sklearn (Python)
you dont have the package scikit-learn installed, try this if you are in a terminal linux :
sudo pip install scikit-learn
if you want to install the package within your code use
import os
os.system('sudo pip install scikit-learn')
Make sure that pip and python are the same version. For example if you run pip for python 2.7, it will install the package only in 2.7, and if your python command point to for example python 3.3 interpreter, it will not have that package