在 ubuntu 15.10 Wily 中安装 php7.0

在 ubuntu 15.10 Wily 中安装 php7.0

如何在这个 Ubuntu 15.10 上安装 php7.0?

我正在尝试运行:

apt-get update -y
apt-get install -y software-properties-common

LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
apt-get update -y

apt-cache search php7什么也没找到:

root@b4d3279c42b1:/# apt-get install php7.0
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package php7.0
E: Couldn't find any package by regex 'php7.0'

基于 Ubuntu:15.10,在 docker 中运行

FROM ubuntu:15.10

RUN apt-get update -y \
  && apt-get install -y \
  software-properties-common

RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
RUN apt-get update -y
RUN apt-get install -y \
    php7.0 \

答案1

ppa 不是软件分发的官方方式。因此,它们由创建者负责维护他们希望支持的版本。

在这种情况下,ondrej/php ppa 不包含 Wily 包。如果您希望使用此 PPA 或自行编译 php 7.0(不推荐),则需要升级到 16.04

相关内容