为什么不能使用 ppa:ondrej?

为什么不能使用 ppa:ondrej?

我想使用 ondrej ppa 升级 ubuntu 服务器中的 php 版本。我已连接到互联网。

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php

我尝试了一下,但出现错误:

Cannot add PPA: 'ppa:ondrej/ubuntu/php'
'ondrej' user or team does not exist

我曾尝试使用-E命令,但错误是一样的。

关于代理设置,我不太明白。我不知道如何根据这里

我也尝试过这个:

RUN apt-get -y install locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN add-apt-repository -y ppa:ondrej/php

但结果是一样的,错误无法添加 ppa:ondrej

谢谢

答案1

显然这是 DNS 的问题或服务器已关闭,因为您发布的命令现在可以成功运行。

sudo add-apt-repository ppa:ondrej/php

更新后,sudo apt install php安装最新的PHP版本(目前为7.3)

答案2

也许问题是由于

  • 您的语言环境(语言等)
  • 你的电脑的互联网连接
  • 一些[其他]已安装的 PPA 或程序包

我尝试使用实时 Ubuntu 16.04.1 LTS,并且可以添加存储库ppa:ondrej/php

有一个警告:“add-apt-repository 在非 UTF-8 语言环境中无法使用。”以及一个解决方法提示。见下文。

ubuntu@ubuntu:~$ sudo add-apt-repository ppa:ondrej/php
 Co-installable PHP versions: PHP 5.6, PHP 7.x and most requested extensions
 are included. Only Supported Versions of PHP
 (http://php.net/supported-versions.php) for Supported Ubuntu Releases
 (https://wiki.ubuntu.com/Releases) are provided. Don't ask for end-of-life
 PHP versions or Ubuntu release, they won't be provided.

Debian oldstable and stable packages are provided as well: https://deb.sury.org/#debian-dpa

You can get more information about the packages at https://deb.sury.org

BUGS&FEATURES: This PPA now has a issue tracker:
https://deb.sury.org/#bug-reporting

CAVEATS:
1. If you are using php-gearman, you need to add ppa:ondrej/pkg-gearman
2. If you are using apache2, you are advised to add ppa:ondrej/apache2
3. If you are using nginx, you are advise to add ppa:ondrej/nginx-mainline
   or ppa:ondrej/nginx

PLEASE READ: If you like my work and want to give me a little motivation, please consider donating regularly: https://donate.sury.org/

WARNING: add-apt-repository is broken with non-UTF-8 locales, see 
https://github.com/oerdnj/deb.sury.org/issues/56 for workaround:

# LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
 More info: https://launchpad.net/~ondrej/+archive/ubuntu/php
Press [ENTER] to continue or ctrl-c to cancel adding it

gpg: keyring `/tmp/tmppiurqcxa/secring.gpg' created
gpg: keyring `/tmp/tmppiurqcxa/pubring.gpg' created
gpg: requesting key E5267A6C from hkp server keyserver.ubuntu.com
gpg: /tmp/tmppiurqcxa/trustdb.gpg: trustdb created
gpg: key E5267A6C: public key "Launchpad PPA for Ondřej Surý" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK

相关内容