📌  相关文章
📜  包 'php7.4-curl' 没有安装候选 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:50:25.471000             🧑  作者: Mango

包 'php7.4-curl' 没有安装候选 - Shell-Bash

该错误信息代表在当前环境下,缺少 PHP 版本为 7.4 的 cURL 扩展。

解决方法
Ubuntu/Debian 系统
  1. 更新 apt-get 包列表:
sudo apt-get update
  1. 安装 PHP 7.4 版本的 cURL 扩展:
sudo apt-get install php7.4-curl
  1. 重启 Apache/Nginx 服务器:
sudo service apache2 restart

sudo service nginx restart
CentOS 系统
  1. 安装 EPEL 软件源:
sudo yum install epel-release
  1. 安装 Remi 软件源:
sudo rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
  1. 安装 PHP 7.4 版本的 cURL 扩展:
sudo yum install php74-php-curl
  1. 重启 Apache/Nginx 服务器:
sudo systemctl restart httpd

sudo systemctl restart nginx
macOS 系统
  1. 使用 Homebrew 安装 PHP 7.4 版本的 cURL 扩展:
brew install php@7.4-curl
  1. 重启 Apache 服务器:
sudo apachectl restart
总结

以上是针对包 'php7.4-curl' 没有安装候选的解决方法,根据不同操作系统的差异,具体的安装命令可能会有所不同。通过以上步骤,可以解决该问题,使得程序能够正常调用 cURL 扩展。