Problem:
The deprecation warning means that the module is deprecated, i.e. no longer supported. You are using a version for which sklearn.cross_validation is not a module any longer.
Solution:
from sklearn.model_selection import train_test_split
C/O: This post.