web-dev-qa-db-ja.com

Ubuntu 16.04にPHP5をインストールできません

root@areeb-Inspiron-3420:/var/www/html# apt install php5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'php5' has no installation candidate
root@areeb-Inspiron-3420:/var/www/html# apt-get install libapache2-mod-php5
Reading package lists... Done
Building dependency tree... 50%
Building dependency tree       
Reading state information... Done
Package libapache2-mod-php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libapache2-mod-php5' has no installation candidate

私は今どうすればいい?

13
Areeb Durani

16.04には、公式リポジトリにPHP 5がありません。 14.04システムをインストールするか、 this PPA を使用します。

1
fkraiem

Ubuntu 16.04 LTSにはPHP 7.0が付属しています。インストールするには、次を実行する必要があります。

Sudo apt-get install php

または、特定のPHP Web SAPIを選択します。ほとんどの場合、Apache2のサポートが必要です。

Sudo apt-get install libapache2-mod-php php

またはPHP FPM

Sudo apt-get install php-fpm php

PHP 5.xが特に必要な場合は、ppa:ondrej/phpを使用してインストールする必要があります。 PHP 5.6 Apache2の場合:

Sudo apt-get install php5.6 libapache2-mod-php5.6
20
oerdnj