Para instalar o python 3.5 é necessario instalar alguns pacotes antes, como root execute:

Depois iremos baixar o pacote do python, como root execute:

cd /usr/src
wget https://www.python.org/ftp/python/3.5.4/Python-3.5.4.tgz

Descompactando os arquivos:

tar xzf Python-3.5.4.tgz

Compilando o pacote:

cd Python-3.5.4
./configure
make altinstall

Agora nós podemos remover o download do tgz:

rm -rf /usr/src/Python-3.5.4.tgz

Para validar se o Python foi instalado, execute:

python3.5 -V