How do I install the ext-curl extension with PHP 7? How do I install the ext-curl extension with PHP 7? curl curl

How do I install the ext-curl extension with PHP 7?


Well I was able to install it by :

sudo apt-get install php-curl

on my system. This will install a dependency package, which depends on the default php version.

After that restart apache

sudo service apache2 restart


please try

sudo apt-get install php7.0-curl


If "sudo apt-get install php-curl" command doesnt work and display error We should run this code before install curl.

  • step1 - sudo add-apt-repository ppa:ondrej/php
  • step2 - sudo apt-get update
  • step3 - sudo apt-get install php-curl
  • step4 - sudo service apache2 restart