如何在ubuntu16.04中安装php curl

vtwuwzda  于 2021-06-20  发布在  Mysql
关注(0)|答案(7)|浏览(481)

升级到 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

wbgh16ku

wbgh16ku1#

这对我有用。

sudo apt-get install php-curl
rur96b6h

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

jhdbpxl9

jhdbpxl93#

sudo apt-get install php5.6-curl

然后重新启动web浏览器。
您可以通过运行 php -m | grep curl

xzlaal3s

xzlaal3s4#

这对我很有用:

sudo apt-get install php5.6-curl
wgmfuz8q

wgmfuz8q5#

执行:

apt-get update

然后:

apt-get install php5-curl
goqiplq2

goqiplq26#

对于ubuntu 18.04或php 7.2用户,您可以: apt-get install php7.2-curl 您可以通过运行 php -v 验证php版本并获得正确的curl版本。

kpbwa7wx

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

相关问题