5

我正在尝试根据https://docs.microsoft.com/en-us/sql/connect/php/installation-tutorial-linux-mac?view=sql-server-2017#安装 sqlsrv (ms sql) PHP 驱动程序#在 red-hat-7 上安装驱动程序

我可以安装所有 pre-reqs,除了 php-devel 需要 libedit-devel 似乎不存在。

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

4

2 回答 2

5

手动安装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
于 2019-10-15T18:31:09.460 回答
2

在 Centos 8 中出现此错误。

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

能够从命令行界面启用 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/

于 2020-11-17T20:04:03.120 回答