我已经使用这个repo安装了PHP 7,但是当我尝试运行composer install时,它给出了这个错误:
[package] require ext-curl * ->系统中缺少所请求的PHP扩展curl。
使用PHP 5,您可以通过运行yum或apt-get install php5-curl命令轻松安装它,但我找不到如何安装PHP 7的等效程序。
如何为PHP 7安装ext-curl ?
我已经使用这个repo安装了PHP 7,但是当我尝试运行composer install时,它给出了这个错误:
[package] require ext-curl * ->系统中缺少所请求的PHP扩展curl。
使用PHP 5,您可以通过运行yum或apt-get install php5-curl命令轻松安装它,但我找不到如何安装PHP 7的等效程序。
如何为PHP 7安装ext-curl ?
当前回答
好吧,我可以安装它:
sudo apt-get install php-curl
在我的系统上。这将安装一个依赖包,依赖于默认的php版本。
然后重启apache
sudo service apache2 restart
其他回答
如果“sudo apt-get install php-curl”命令不起作用,提示错误 我们应该在安装curl之前运行这段代码。
步骤1 - sudo添加-apt-repository ppa:ondrej/php 步骤2 - sudo apt-get更新 步骤3 - sudo apt-get安装php-curl 步骤4 - sudo服务apache2重启
sudo apt-get install php7.0-curl
如果你正在使用PHP7.1(尝试php -version找到你的php版本)
sudo apt-get install php7.1-curl
然后重新启动apache
sudo service apache2 restart
我得到了一个错误,在WAMP上安装WebMail Lite 8时,CURL扩展丢失了(在Windows上)。
在阅读到libeay32.dll是必需的,它只存在于一些PHP安装文件夹(如7.1.26)之后,我在WAMP PHP版本菜单中将使用的PHP版本从7.2.14切换到7.1.26,错误就消失了。
尝试一下,如果你得到E:无法定位包{packageName}
sudo add-apt-repository main
sudo add-apt-repository universe
sudo add-apt-repository restricted
sudo add-apt-repository multiverse
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php-curl