命令行

命令行

如何通过 apt-get 安装 PHP 7?

/etc/apt/sources.list

deb http://packages.dotdeb.org jessie all
deb-src http://packages.dotdeb.org jessie all

命令行

wget https://www.dotdeb.org/dotdeb.gpg
apt-key add dotdeb.gpg
apt-get install php7

安装

# apt-get install php7
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package php7

答案1

php7在 Debian Jessie 的存储库中不可用。这可能是因为php7尚未被认为是稳定的。您需要php7从存储库安装 Debian Sid(不稳定)。

如果你仍然想要phpDebian Jessie,你可以php5安装apt-get install php5

如果你有 Debian Sid,你可以php7安装apt-get install php7.0

如果你真的需要php7Debian Jessie,您可以从源代码编译它。

相关内容