[root@VM-8-7-centos ~]# sudo yum install python3.9 Loaded plugins: fastestmirror, langpacks Repository epel is listed more than once in the configuration Loading mirror speeds from cached hostfile No package python3.9 available. Error: Nothing to do [root@VM-8-7-centos ~]#
时间: 2024-04-16 13:28:43 浏览: 278
rhel8-fedora-release:RHEL 8 CentOS 8的50k +软件包,甚至在EPEL启用之前
根据您的输出,看起来在您的CentOS系统上没有可用的Python 3.9软件包。这可能是由于您的软件源配置不正确或者您的系统版本不支持Python 3.9导致的。
首先,您可以尝试更新软件包缓存并再次尝试安装Python 3.9:
```
sudo yum update
sudo yum install python3.9
```
如果上述命令仍然无法找到Python 3.9软件包,您可以尝试使用其他软件源来获取Python 3.9。例如,您可以使用 IUS (Inline with Upstream Stable) 软件源,它提供了最新的稳定版本的软件包。
首先,安装 IUS 软件源:
```
sudo yum install https://repo.ius.io/ius-release-el7.rpm
```
然后,安装 Python 3.9:
```
sudo yum install python39
```
请注意,具体的命令和软件源可能因您使用的CentOS版本而有所不同。上述命令适用于CentOS 7。如果您使用的是其他版本的CentOS,请根据实际情况进行相应调整。
如果您仍然遇到困难或有任何疑问,请提供更多详细信息,我将尽力帮助您解决问题。
阅读全文