在理解上,对于脚本化安装,python-setuptools
和python-devel
包都是必填项 by 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
8中,如果它们存在于CentOS
7中,尽管它们可能已被移动或重命名。可能我需要再加个回购?
[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 ~]$
虽然他们看起来很主流。
发布于 2020-09-23 13:35:40
您需要指定python2或python3..。如yum install python3-setuptools
或yum install python2-setuptools
https://unix.stackexchange.com/questions/610953
复制相似问题