升级到 Ubuntu 16.04 安装后面临的问题 PHP5 .安装了php-5,包括:
Ubuntu 16.04
PHP5
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
wbgh16ku1#
这对我有用。
sudo apt-get install php-curl
rur96b6h2#
在ubuntu 16.04中,默认php版本为7.0,如果您想使用不同的版本,则需要根据php版本安装php包:php 7.4版: sudo apt-get install php7.4-curl php 7.3版: sudo apt-get install php7.3-curl 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 PHP5.6: sudo apt-get install php5.6-curl PHP5.5: sudo apt-get install php5.5-curl
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
jhdbpxl93#
然后重新启动web浏览器。您可以通过运行 php -m | grep curl
php -m | grep curl
xzlaal3s4#
这对我很有用:
wgmfuz8q5#
执行:
apt-get update
然后:
apt-get install php5-curl
goqiplq26#
对于ubuntu 18.04或php 7.2用户,您可以: apt-get install php7.2-curl 您可以通过运行 php -v 验证php版本并获得正确的curl版本。
apt-get install php7.2-curl
php -v
kpbwa7wx7#
在ubuntu16.04及其派生版本上安装curl7.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
7条答案
按热度按时间wbgh16ku1#
这对我有用。
rur96b6h2#
在ubuntu 16.04中,默认php版本为7.0,如果您想使用不同的版本,则需要根据php版本安装php包:
php 7.4版:
sudo apt-get install php7.4-curl
php 7.3版:sudo apt-get install php7.3-curl
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
PHP5.6:sudo apt-get install php5.6-curl
PHP5.5:sudo apt-get install php5.5-curl
jhdbpxl93#
然后重新启动web浏览器。
您可以通过运行
php -m | grep curl
xzlaal3s4#
这对我很有用:
wgmfuz8q5#
执行:
然后:
goqiplq26#
对于ubuntu 18.04或php 7.2用户,您可以:
apt-get install php7.2-curl
您可以通过运行php -v
验证php版本并获得正确的curl版本。kpbwa7wx7#
在ubuntu16.04及其派生版本上安装curl7.49.0