ChatGPT解决这个技术问题 Extra ChatGPT

How to install php-curl in Ubuntu 16.04

Upgraded to Ubuntu 16.04 and facing problem after installing PHP5.

Installed PHP-5 with following:

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

Trying to install php-curl but its not working.

sudo apt-get install php5-curl

Error: E: Unable to locate package php5-curl

are you sure it's not installedand not just disabled? use php5enmod command to enable it.
Is there a reason why you need to use php 5.5? It's reached it's end of life, and is no longer supported (There are many security issues)
@frankerZ My projects not working under PHP7
Are these huge projects? I think you should lean toward making your projects work in the latest version, then installing an old php to support this project.
I've 15-20 projects on local and live servers not in my hand

S
Sl4rtib4rtf4st

In Ubuntu 16.04 default PHP version is 7.0, if you want to use different version then you need to install PHP package according to PHP version:

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


For me, this was exactly the case. Had PHP 7 installed and kept getting Package 'php5-curl' has no installation candidate. Running sudo apt-get install php-curl fixed the problem
yeah, it Works.
use php -version to find out what version of PHP you're on
Perfect, but how do you fix libcurl issues with PHP 7.2 (needs libcurl4) and Percona MySQL 5.7 (needs libcurl3)?
@ShadowZzz yes, your suggestion worked for me as well.
A
Aaganja

This worked for me.

sudo apt-get install php-curl

Yes, this works without having to specify a PHP version if the user doesn't know it.
Worked for me too on Amazon EC2 Ubuntu 16
N
Nehal J Wani

This works for me:

sudo apt-get install php5.6-curl

k
k0pernikus

Do:

apt-get update

And then:

apt-get install php5-curl

V
Vitalicus
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php8.0-curl

G
George

To Install cURL 7.49.0 on Ubuntu 16.04 and Derivatives

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

Y
Yaser AlAzem

For Ubuntu 18.04 or PHP 7.2 users you can do:

apt-get install php7.2-curl

You can check your PHP version by running php -v to verify your PHP version and get the right curl version.


R
Robert
sudo apt-get install php5.6-curl

and restart the web browser.

You can check the modules by running php -m | grep curl