84

升级到Ubuntu 16.04安装后遇到问题PHP5

安装了PHP-5,如下:

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php5.5   # for PHP 5.5

试图安装 php-curl 但它不起作用。

sudo apt-get install php5-curl

错误:E:无法找到包 php5-curl

4

8 回答 8

252

在 Ubuntu 16.04 默认 PHP 版本是 7.0,如果你想使用不同的版本,那么你需要根据 PHP 版本安装 PHP 包:

  • PHP 7.4:sudo apt-get install php7.4-curl
  • PHP 7.3:sudo apt-get install php7.3-curl
  • PHP 7.2:sudo apt-get install php7.2-curl
  • PHP 7.1:sudo apt-get install php7.1-curl
  • PHP 7.0:sudo apt-get install php7.0-curl
  • PHP 5.6:sudo apt-get install php5.6-curl
  • PHP 5.5:sudo apt-get install php5.5-curl
于 2016-08-06T06:34:25.797 回答
33

这对我有用。

sudo apt-get install php-curl
于 2016-08-08T05:42:48.717 回答
21

这对我有用:

sudo apt-get install php5.6-curl
于 2016-08-06T06:33:26.347 回答
7

做:

apt-get update

接着:

apt-get install php5-curl
于 2017-05-26T19:44:43.903 回答
3

在 Ubuntu 16.04 和衍生产品上安装 cURL 7.49.0

wget http://curl.haxx.se/download/curl-7.49.0.tar.gz
tar -xvf curl-7.49.0.tar.gz
cd curl-7.49.0/
./configure
make
sudo make install
于 2017-03-07T22:21:04.363 回答
3

对于 Ubuntu 18.04 或 PHP 7.2 用户,您可以执行以下操作:

apt-get install php7.2-curl

您可以通过运行php -v来检查您的 PHP 版本以验证您的 PHP 版本并获得正确的 curl 版本。

于 2019-04-12T14:58:50.497 回答
2
sudo apt-get install php5.6-curl

并重新启动网络浏览器。

您可以通过运行检查模块php -m | grep curl

于 2018-10-30T10:08:16.563 回答
1
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php8.0-curl
于 2021-03-12T22:37:56.773 回答