77
votes

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

8
are you sure it's not installedand not just disabled? use php5enmod command to enable it.I wrestled a bear once.
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)Goodbye StackExchange
@frankerZ My projects not working under PHP7Govind Samrow
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.Goodbye StackExchange
I've 15-20 projects on local and live servers not in my handGovind Samrow

8 Answers

235
votes

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
31
votes

This worked for me.

sudo apt-get install php-curl
21
votes

This works for me:

sudo apt-get install php5.6-curl
6
votes

Do:

apt-get update

And then:

apt-get install php5-curl
3
votes

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
3
votes

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.

2
votes
sudo apt-get install php5.6-curl

and restart the web browser.

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

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