升级到 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
错误:E:无法找到包 php5-curl
原文由 Govind Samrow 发布,翻译遵循 CC BY-SA 4.0 许可协议
在 Ubuntu 16.04 默认 PHP 版本是 7.0,如果你想使用不同的版本,那么你需要根据 PHP 版本安装 PHP 包:
sudo apt-get install php7.4-curl
sudo apt-get install php7.3-curl
sudo apt-get install php7.2-curl
sudo apt-get install php7.1-curl
sudo apt-get install php7.0-curl
sudo apt-get install php5.6-curl
sudo apt-get install php5.5-curl