一尘不染

如何在Ubuntu 16.04中安装php-curl

php

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


阅读 371

收藏
2020-05-29

共1个答案

一尘不染

在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
  • PHP 5.6: sudo apt-get install php5.6-curl
  • PHP 5.5: sudo apt-get install php5.5-curl
2020-05-29