diff --git a/translated/tech/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md b/published/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md similarity index 70% rename from translated/tech/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md rename to published/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md index 768e7a7091..04f9379ddf 100644 --- a/translated/tech/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md +++ b/published/20221022.1 ⭐️ How to Install Python 3.10 in Ubuntu and Other Related Linux.md @@ -3,38 +3,40 @@ [#]: author: "Arindam https://www.debugpoint.com/author/admin1/" [#]: collector: "lkxed" [#]: translator: "geekpi" -[#]: reviewer: " " -[#]: publisher: " " -[#]: url: " " +[#]: reviewer: "wxy" +[#]: publisher: "wxy" +[#]: url: "https://linux.cn/article-15195-1.html" 如何在 Ubuntu 和其他相关 Linux 中安装 Python 3.10 ====== -**计划为工作安装 Python 3.10?以下是在 Ubuntu 和相关发行版中安装 Python 3.10 的方法。** +![](https://img.linux.net.cn/data/attachment/album/202210/30/152139lddzddabu5u4buud.jpg) -Python 3.10 于 2021 年 10 月 25 日发布,具有附加功能和更新。此版本带来了更好的错误消息处理、新的模式匹配功能、TypeAlias、用户定义的类型保护等。你可以在[此处][1]阅读发布亮点。 +> 计划为工作安装 Python 3.10?以下是在 Ubuntu 和相关发行版中安装 Python 3.10 的方法。 + +Python 3.10 于 2021 年 10 月 25 日发布,具有附加功能和更新。此版本带来了更好的错误消息处理、新的模式匹配功能、类型别名TypeAlias、用户定义的类型保护等。你可以在 [此处][1] 阅读发布重点。 在编写本指南时,大多数当前发行版都采用 Python 3.10。例如,Ubuntu 22.04 LTS 和 Fedora 36 默认都有 Python 3.10。 -也就是说,如果你现在需要任何不支持的版本中的 Python 3.10,你可以使用[下面的可靠 PPA][2]在 Ubuntu 中安装最新的 Python 3.10。下面是方法。 +也就是说,如果你现在在任何不支持的版本中需要 Python 3.10,你可以使用 [下面的可靠 PPA][2] 在 Ubuntu 中安装最新的 Python 3.10。下面是方法。 ### 如何在 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。 +此 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。 -- 打开终端并添加以下 PPA。 +打开终端并添加以下 PPA: ``` sudo add-apt-repository ppa:deadsnakes/ppa ``` -- 使用以下命令刷新缓存。 +使用以下命令刷新缓存: ``` sudo apt update ``` -- 并使用以下命令安装 Python 3.10。 +并使用以下命令安装 Python 3.10: ``` sudo apt install python3.10 @@ -42,9 +44,9 @@ sudo apt install python3.10 ### 设置 Python 版本 -将 Python 3.10 设置为默认值需要一些额外的步骤。请跟上。 +将 Python 3.10 设置为默认值需要一些额外的步骤。如下。 -**警告**:你的 Ubuntu 系统中的许多应用程序依赖于 Python 3.9 的库存版本。因此,请确保你的工作应用(例如 GIMP、GNOME 终端等)与 Python 3.10 兼容。所以,要小心。 +> **警告**:你的 Ubuntu 系统中的许多应用程序依赖于 Python 3.9 的库存版本。因此,请确保你的工作应用(例如 GIMP、GNOME 终端等)与 Python 3.10 兼容。所以,要小心。 **快速提示:** 如果要检查已安装的系统包中的哪些依赖于特定版本,请使用 `apt-cache` 命令的 `rdepends` 开关。在下面的示例中,我检查哪些已安装的包依赖于 Python 3.8。 @@ -100,13 +102,13 @@ gedit #### 使用 Python 3.10 作为默认 Python3 -- 首先,使用终端中的以下命令检查当前默认版本。 +首先,使用终端中的以下命令检查当前默认版本。 ``` python3 --version ``` -- 使用 `update-alternatives` 创建指向 python3 的符号链接。 +使用 `update-alternatives` 创建指向 `python3` 的符号链接。 ``` sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 @@ -116,7 +118,7 @@ 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: +并通过以下命令选择使用哪一个作为 `python3`: ``` sudo update-alternatives --config python3 @@ -133,7 +135,7 @@ via: https://www.debugpoint.com/install-python-3-10-ubuntu/ 作者:[Arindam][a] 选题:[lkxed][b] 译者:[geekpi](https://github.com/geekpi) -校对:[校对者ID](https://github.com/校对者ID) +校对:[wxy](https://github.com/wxy) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出