I tried to install sci-kit learn module in python on ubuntu. As explained in their tutorial, I did:
pip install --user --install-option="--prefix=" -U scikit-learn
But when, in python console, I try
import sklearn
I get:
ImportError: No module named sklearn
Moreover, if I do
pip list
sklearn does not appear in the list.
And if I try:
sudo pip install scikit-learn
I get:
Requirement already satisfied (use --upgrade to upgrade): scikit-learn in ./.local/lib/python2.7/site-packages