CentOS,找不到 libedit-devel

CentOS, libedit-devel not found

我正在尝试根据 https://docs.microsoft.com/en-us/sql/connect/php/installation-tutorial-linux-mac?view=sql-server-2017#installing-the-drivers-on-red-hat-7

安装 sqlsrv (ms sql) PHP 驱动程序

除了 php-devel 需要似乎不存在的 libedit-devel 之外,我可以安装所有先决条件。

我在哪里可以获得 libedit-devel?

手动安装 libedit-devel 库。

wget http://mirror.centos.org/centos/7/os/x86_64/Packages/libedit-devel-3.0-12.20121213cvs.el7.x86_64.rpm
sudo rpm -i libedit-devel-3.0-12.20121213cvs.el7.x86_64.rpm

在 Centos 8 中遇到这个错误。

CentOS 8 / RHEL 8 默认不启用 PowerTools 存储库 Linux。此存储库包含许多在安装其他应用程序时需要作为依赖项的包,并且主要是从源代码构建应用程序。

能够从命令行界面在 CentOS 8 / RHEL 8 上启用 PowerTools 存储库。首先安装DNF插件包:

sudo dnf -y install dnf-plugins-core

安装 EPEL 存储库 – PowerTools 存储库和 EPEL 存储库是最好的朋友。所以也启用 EPEL 存储库。

sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

在 CentOS 8 / RHEL 8 上启用 PowerTools 存储库:

sudo dnf config-manager --set-enabled PowerTools

确认已启用:

sudo dnf repolist

那你可以试试自动下载:

yum -y install   libedit-devel

https://computingforgeeks.com/enable-powertools-repository-on-centos-rhel-linux/