TranslateProject/published/202210/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md

146 lines
4.2 KiB
Markdown
Raw Normal View History

2022-10-27 08:53:43 +08:00
[#]: subject: "How to Install Python 3.10 in Ubuntu and Other Related Linux"
[#]: via: "https://www.debugpoint.com/install-python-3-10-ubuntu/"
[#]: author: "Arindam https://www.debugpoint.com/author/admin1/"
[#]: collector: "lkxed"
[#]: translator: "geekpi"
[#]: reviewer: "wxy"
[#]: publisher: "wxy"
[#]: url: "https://linux.cn/article-15195-1.html"
2022-10-27 08:53:43 +08:00
如何在 Ubuntu 和其他相关 Linux 中安装 Python 3.10
======
![](https://img.linux.net.cn/data/attachment/album/202210/30/152139lddzddabu5u4buud.jpg)
2022-10-27 08:53:43 +08:00
> 计划为工作安装 Python 3.10?以下是在 Ubuntu 和相关发行版中安装 Python 3.10 的方法。
Python 3.10 于 2021 年 10 月 25 日发布,具有附加功能和更新。此版本带来了更好的错误消息处理、新的模式匹配功能、<ruby>类型别名<rt>TypeAlias</rt></ruby>、用户定义的类型保护等。你可以在 [此处][1] 阅读发布重点。
2022-10-27 08:53:43 +08:00
在编写本指南时,大多数当前发行版都采用 Python 3.10。例如Ubuntu 22.04 LTS 和 Fedora 36 默认都有 Python 3.10。
也就是说,如果你现在在任何不支持的版本中需要 Python 3.10,你可以使用 [下面的可靠 PPA][2] 在 Ubuntu 中安装最新的 Python 3.10。下面是方法。
2022-10-27 08:53:43 +08:00
### 如何在 Ubuntu 上安装 Python 3.10
此 PPA 可用于 Ubuntu 21.10、Ubuntu 21.04、Ubuntu 20.04 LTS、Ubuntu 18.04 LTS 和 Linux Mint 20.x、Elementary OS 6 和其他相关的基于 Ubuntu 的发行版。这些发行版大多数默认情况下不支持 3.10。
2022-10-27 08:53:43 +08:00
打开终端并添加以下 PPA
2022-10-27 08:53:43 +08:00
```
sudo add-apt-repository ppa:deadsnakes/ppa
```
使用以下命令刷新缓存:
2022-10-27 08:53:43 +08:00
```
sudo apt update
```
并使用以下命令安装 Python 3.10
2022-10-27 08:53:43 +08:00
```
sudo apt install python3.10
```
### 设置 Python 版本
将 Python 3.10 设置为默认值需要一些额外的步骤。如下。
2022-10-27 08:53:43 +08:00
> **警告**:你的 Ubuntu 系统中的许多应用程序依赖于 Python 3.9 的库存版本。因此,请确保你的工作应用(例如 GIMP、GNOME 终端等)与 Python 3.10 兼容。所以,要小心。
2022-10-27 08:53:43 +08:00
**快速提示:** 如果要检查已安装的系统包中的哪些依赖于特定版本,请使用 `apt-cache` 命令的 `rdepends` 开关。在下面的示例中,我检查哪些已安装的包依赖于 Python 3.8。
```
apt-cache rdepends python3.8
```
```
[~]$ apt-cache rdepends python3.8
python3.8
Reverse Depends:
python3.8-dbg
virtualbox
python3.8-venv
python3.8-full
libpython3.8-testsuite
libglib2.0-tests
idle-python3.8
idle-python3.8
python3.8-minimal
python3.8-doc
python3.8-dev
python3.8-dbg
python3-uno
gedit
virtualbox
stimfit
python3.8-venv
python3-stfio
python3-escript-mpi
python3-escript
python3-csound
pitivi
obs-studio
liferea
libpython3.8-testsuite
libglib2.0-tests
kitty
kdevelop-python
idle-python3.8
idle-python3.8
rhythmbox-plugins
python3.8-minimal
python3.8-doc
python3.8-dev
python3
python3-uno
python3-all
cluster-glue
gedit
[~]$
```
#### 使用 Python 3.10 作为默认 Python3
首先,使用终端中的以下命令检查当前默认版本。
2022-10-27 08:53:43 +08:00
```
python3 --version
```
使用 `update-alternatives` 创建指向 `python3` 的符号链接。
2022-10-27 08:53:43 +08:00
```
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
```
```
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 2
```
并通过以下命令选择使用哪一个作为 `python3`
2022-10-27 08:53:43 +08:00
```
sudo update-alternatives --config python3
```
![在 Ubuntu 中安装 Python 3.10][3]
这就是所有步骤。现在,你可以开始在当前的 Ubuntu 版本中使用最新的 Python 进行工作/学习。你可以使用上述命令切换到库存版本并在任何时间更改版本号。
--------------------------------------------------------------------------------
via: https://www.debugpoint.com/install-python-3-10-ubuntu/
作者:[Arindam][a]
选题:[lkxed][b]
译者:[geekpi](https://github.com/geekpi)
校对:[wxy](https://github.com/wxy)
2022-10-27 08:53:43 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://www.debugpoint.com/author/admin1/
[b]: https://github.com/lkxed
[1]: https://docs.python.org/3.10/whatsnew/3.10.html
[2]: https://github.com/deadsnakes
[3]: https://www.debugpoint.com/wp-content/uploads/2021/10/Installed-Python-3.10-in-Ubuntu-1024x472.jpeg