如何使用 PHP 7 安装 ext-curl 扩展?

2022-08-30 06:13:04

我已经使用此存储库安装了PHP 7,但是当我尝试运行时,它给出了以下错误:composer install

  • [包] 需要 ext-curl * ->系统中缺少请求的 PHP 扩展 curl。

使用PHP 5,您可以通过运行or命令轻松安装它,但我找不到如何安装PHP 7等效项。yumapt-get install php5-curl

如何为 PHP 7 安装 ext-curl?


答案 1

好吧,我能够通过以下方式安装它:

sudo apt-get install php-curl

在我的系统上。这将安装一个依赖包,这取决于默认的php版本。

重新启动 apache 之后

sudo service apache2 restart

答案 2
sudo apt-get install php7.0-curl

推荐