在基于RPM的Linux发行版(如CentOS、RHEL和Fedora)上,可以使用yum
包管理器来安装Python。
以下是如何使用yum
安装Python的步骤
sudo yum update
对于Python 2.x,运行以下命令:
sudo yum install python
对于Python 3.x,运行以下命令:
sudo yum install python3
对于Python 2.x:
python --version
对于Python 3.x:
python3 --version
这将输出已安装的Python版本。
请注意,根据你的Linux发行版及其软件仓库,可用的Python版本可能会有所不同。
在某些发行版中,你可能需要启用额外的软件仓库或从源代码编译Python以获得特定版本的Python。