1、配置软件仓库
sudo add-apt-repository ppa:jonathonf/python-3.6
2、检查系统软件包并安装Python3.6
sudo apt-get update
sudo apt-get install python3.6
3、把Python3.6改为Python3首选项
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2
sudo update-alternatives --config python3
4、测试
终端输入python3 -V