Ubuntu20.04升级python3.8 ubuntu升级python3.10
一、添加源二、安装python3.10三、设置默认版本为 Python3.10四、选择默认版本 python3.10五、修复 pip六、权限问题
一、添加源
sudo apt install software-properties-commonsudo add-apt-repository ppa:deadsnakes/ppaapt update
二、安装python3.10
apt install python3.10
三、设置默认版本为 Python3.10
先查看系统已存在的所有python版本
ls -l /usr/bin/python*
将 /usr/bin/python3.8 安装为 /usr/bin/python3 的备选版本,优先级为1
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1
将 /usr/bin/python3.10 安装为 /usr/bin/python3 的备选版本,优先级为2
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 2
四、选择默认版本 python3.10
提示信息中回车即可
update-alternatives --config python3
五、修复 pip
apt install python3.10-distutils
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
六、权限问题
在Python3中为当前用户安装pip
python3 get-pip.py --user