Comment installer php-curl dans Ubuntu 16.04
upgrades to Ubuntu 16.04
et faire face à un problème après l'installation PHP5
.
Installé PHP-5 avec le code suivant:
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
essayer d'installer php-curl mais ça ne marche pas.
sudo apt-get install php5-curl
erreur: E: impossible de localiser le paquet php5-curl
44
demandé sur
Govind Samrow
2016-08-06 07:41:32
5 réponses
dans Ubuntu 16.04 la version PHP par défaut est 7.0, si vous voulez utiliser une version différente, alors vous devez installer le paquet PHP selon la version PHP:
- 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
130
répondu
Govind Samrow
2018-03-27 10:00:55
Cela fonctionne pour moi:
sudo apt-get install php5.6-curl
20
répondu
Nehal J Wani
2016-08-06 06:33:26
Pour Installer cURL 7.49.0 sur Ubuntu 16.04 et Dérivés
- 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
- .sudo make install
3
répondu
Khalid Bin Huda
2017-03-07 22:21:04
Faire:
# apt-get update
puis:
# apt-get install php5-curl
3
répondu
Guillermo Hernández
2017-05-26 19:44:43