https://www.python.org/ftp/python
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
tar xvf Python-3.6.0.tgz
[test@localhost ~]$ ls
Desktop    Downloads  Public        Python-3.6.0.tgz    Templates
Documents  Music      Pictures      Python-3.6.0        Videos
[test@localhost ~]$  cd Python-3.6.0/
[test@localhost Python-3.6.0]$ sudo ./configure --prefix=/usr/local
[test@localhost Python-3.6.0]$ sudo make
[test@localhost Python-3.6.0]$ sudo make install
[test@localhost ~]$ python3.6
Python 3.6.0 (default, Jul 29 2017, 22:16:47) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print('Hellow Python')
Hellow Python
>>> exit()