Linux

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

  • November 6, 2019

我剛剛發現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

PS。不ius,請不要scl發布

剛剛在我的(相同的)發行版上嘗試過,它有效,您可以嘗試以下命令:

yum clean all ; yum install python36

RHEL/CentOS 7 現在在基本儲存庫中包含 python3(版本 3.6)。

yum install python3

引用自:https://serverfault.com/questions/978812