升级到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
答案 0 :(得分:158)
在Ubuntu 16.04中默认的PHP版本是7.0,如果你想使用不同的版本,那么你需要根据PHP版本安装PHP包:
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
答案 1 :(得分:24)
这对我有用。
sudo apt-get install php-curl
答案 2 :(得分:20)
这对我有用:
sudo apt-get install php5.6-curl
答案 3 :(得分:4)
在Ubuntu 16.04和Derivatives上安装cURL 7.49.0
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
答案 4 :(得分:4)
执行:
# apt-get update
然后:
# apt-get install php5-curl
答案 5 :(得分:0)
sudo apt-get install php5.6-curl
,然后重新启动Web浏览器。
您可以通过运行php -m | grep curl
答案 6 :(得分:0)
对于Ubuntu 18.04或PHP 7.2用户,您可以执行以下操作:
apt-get install php7.2-curl
您可以通过运行php -v
来检查PHP版本,以验证您的PHP版本并获取正确的curl版本。
答案 7 :(得分:0)
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php8.0-curl