wget https://www.python.org/ftp/python/2.7.14/Python-2.7.14.tar.xz
xz -d Python-2.7.14.tar.xz
tar xf Python-2.7.14.tar
cd Python-2.7.14
./configure --prefix=/where/you/want/python27
make -j 4
make install
sudo pip install virtualenv
virtualenv -p /where/you/want/python27/bin/python2.7 where/envpy27
source /where/envpy27/bin/activate
deactivate