如何在Ubuntu 16.04中安装php-curl
作者:互联网
升级到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
Error: E: Unable to locate package php5-curl
解决方法:
在Ubuntu 16.04中,默认的PHP版本是7.0,如果你想使用不同的版本,那么你需要根据PHP版本安装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
标签:php,ubuntu,curl,ubuntu-16-04,php-curl 来源: https://codeday.me/bug/20190926/1821030.html