I am using python 2.7 in Ubuntu 14.04. I installed scikit-learn, numpy and matplotlib with these commands:
sudo apt-get install build-essential python-dev p
sklearn.cross_validation is now changed to sklearn.model_selection
sklearn.cross_validation
sklearn.model_selection
Just use
from sklearn.model_selection import train_test_split
I think that will work.