第 2 章 安装和使用 Python
在 RHEL 9 中,Python 3.9 是默认的 Python 实施。从 RHEL 9.2 开始,Python 3.11 作为 python3.11
软件包套件提供,自 RHEL 9.4 开始,Python 3.12 作为 python3.12
软件包套件提供。
unversioned python
命令指向默认的 Python 3.9 版本。
2.1. 安装 Python 3
通常默认安装默认的 Python 实现。要手动安装它,请使用以下步骤。
步骤
要安装 Python 3.9,请使用:
# dnf install python3
要安装 Python 3.11,请使用:
# dnf install python3.11
要安装 Python 3.12,请使用:
# dnf install python3.12
验证步骤
-
要验证系统上安装的 Python 版本,请使用
--version
选项以及特定于您所需 Python 版本的python
命令。 对于 Python 3.9 :
$ python3 --version
对于 Python 3.11 :
$ python3.11 --version
对于 Python 3.12 :
$ python3.12 --version