如何在 CentOS 8 上安裝 python-setuptools?

如何在 CentOS 8 上安裝 python-setuptools?

理解python-setuptools包包python-devel都是必需的透過bench腳本化安裝:

[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ sudo yum install -y python-setuptools python-devel
Last metadata expiration check: 0:45:02 ago on Wed 23 Sep 2020 05:36:16 AM PDT.
No match for argument: python-setuptools
No match for argument: python-devel
Error: Unable to find a match: python-setuptools python-devel
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ uname -a
Linux rolly 4.18.0-193.19.1.el8_2.x86_64 #1 SMP Mon Sep 14 14:37:00 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description:    CentOS Linux release 8.2.2004 (Core) 
Release:    8.2.2004
Codename:   Core
[nsaunders@rolly ~]$ 

幾乎可以肯定,如果這兩個軟體包CentOS存在於 7 版,那麼它們也存在於 8CentOS版,儘管它們可能已被移動或重新命名。可能我需要新增一個儲存庫?

[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ yum repolist
repo id                                        repo name
AppStream                                      CentOS-8 - AppStream
BaseOS                                         CentOS-8 - Base
PowerTools                                     CentOS-8 - PowerTools
docker-ce-stable                               Docker CE Stable - x86_64
epel                                           Extra Packages for Enterprise Linux 8 - x86_64
epel-modular                                   Extra Packages for Enterprise Linux Modular 8 - x86_64
extras                                         CentOS-8 - Extras
[nsaunders@rolly ~]$ 

儘管它們看起來是主流。

答案1

您需要指定 python2 或 python3...作為yum install python3-setuptoolsyum install python2-setuptools

相關內容