Eu recebi uma resposta no stackoverflow.
Fonte: link
Suponhamos que você tenha um sistema executando o Ubuntu 16.04, 16.10 ou 17.04, e você quer que o Python 3.6 seja o Python padrão.
Se você estiver usando o Ubuntu 16.04 LTS, precisará usar um PPA:
sudo add-apt-repository ppa:jonathonf/python-3.6 # (only for 16.04 LTS)
Em seguida, execute o seguinte (isso funciona pronto para uso em 16.10 e 17.04):
sudo apt update sudo apt install python3.6 sudo apt install python3.6-dev sudo apt install python3.6-venv wget https://bootstrap.pypa.io/get-pip.py sudo python3.6 get-pip.py sudo ln -s /usr/bin/python3.6 /usr/local/bin/python3 sudo ln -s /usr/local/bin/pip /usr/local/bin/pip3 # Do this only if you want python3 to be the default Python # instead of python2 (may be dangerous, esp. before 2020): # sudo ln -s /usr/bin/python3.6 /usr/local/bin/python
Quando você tiver concluído todos os itens acima, cada um dos seguintes shell comandos devem indicar
Python 3.6.1
(ou uma versão mais recente do Python 3.6):python --version # (this will reflect your choice, see above) python3 --version $(head -1 'which pip' | tail -c +3) --version $(head -1 'which pip3' | tail -c +3) --version