如何在 centos7 上使用 yum/epel-release 安装 python3

如何在 centos7 上使用 yum/epel-release 安装 python3

我刚刚发现yum install python36安装CentOS Linux release 7.6.1810 (Core)epel-release

失败

# yum install python36
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: centos.copahost.com
 * epel: epel.besthosting.ua
 * extras: centos.intergenia.de
 * updates: ftp.halifax.rwth-aachen.de
No package python36 available.
Error: Nothing to do

您能否建议如何python36使用进行安装yum

附言:不iusscl请不要发布

答案1

刚刚在我的(相同)发行版上尝试过,它有效,您可以尝试以下命令:

yum clean all ; yum install python36

答案2

RHEL/CentOS 7 现在在基础存储库中包含 python3(版本 3.6)。

yum install python3

相关内容