将Ubuntu18.04默认的python3.6升级到python3.8

1、查看现有的 python3 版本

复制代码
python3 --version

2、安装 python3.8

复制代码
sudo apt install python3.8

3、将 python3.6 和 3.8 添加到 update-alternatives

复制代码
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2

4、将 python3 指向 python3.8

复制代码
sudo update-alternatives --config python3

可以看到,python3 已经默认指向了 python3.8,按回车即可。

5、输入 python3 指令测试一下,可以看到指向已更新到 python3.8。

6、如果以后不使用 python3.8 可以使用如下指令删除

复制代码
sudo apt-get -y purge python3.8
sudo apt-get -y autoremove

至此,python3.6 升级到 python3.8 版本完成。


参考博客:

Ubuntu 升级 Python 3.6 版本到 3.8 - Python - 大象笔记

相关推荐
e***749511 分钟前
Modbus报文详解
服务器·开发语言·php
lly20240612 分钟前
ASP 发送电子邮件详解
开发语言
小徐敲java13 分钟前
python使用s7协议与plc进行数据通讯(HslCommunication模拟)
开发语言·python
likuolei14 分钟前
XSL-FO 软件
java·开发语言·前端·数据库
6***379414 分钟前
PHP在电商中的BigCommerce
开发语言·php
猫头虎14 分钟前
如何解决 pip install 编译报错 fatal error: hdf5.h: No such file or directory(h5py)问题
人工智能·python·pycharm·开源·beautifulsoup·ai编程·pip
Dev7z16 分钟前
基于Matlab的多制式条形码识别与图形界面(GUI)系统设计与实现
开发语言·matlab
合作小小程序员小小店16 分钟前
桌面开发,在线%信息管理%系统,基于vs2022,c#,winform,sql server数据。
开发语言·数据库·sql·microsoft·c#
FL162386312917 分钟前
ONNX RuntimeC++ 静态库下载安装和使用教程
开发语言·c++
星释18 分钟前
Rust 练习册 95:React与响应式编程
开发语言·react.js·rust