- 安装 python3
sudo apt install python3
2. 卸载 python2.7 (可选) 过程中遇到Y/N时,按Y再回车
sudo apt remove python
再执行如下命令自动清理 python2.7 的依赖
sudo apt autoremove
3. 删除掉原先 python 的链接
sudo rm /usr/bin/python
sudo ln -s /usr/bin/python3.7 /usr/bin/python
5. 查询目前版本
python -V
6. 测试
python
显示以下文字则成功
Python 3.7.3 (default, Jul 25 2020, 13:03:44) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more informatio n.