将 PPA 添加到 add-apt-repository

将 PPA 添加到 add-apt-repository

我正在尝试添加ubuntu-toolchain-r/测试和:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test

但结果却是:

Cannot add PPA: 'ppa:ubuntu-toolchain-r/test'.
Please check that the PPA name or format is correct.

答案1

这很奇怪!您似乎使用了正确的语法。

您可以尝试使用 PPA 的完整路径添加 ppa,而不是“ppa”缩写。尝试在控制台中运行以下命令:

sudo apt-add-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main"

让我知道发生什么事!

编辑:假设您正在运行 Xenial (16.04);否则,请将xenial“deb”行中的 替换为trustyutopic或您正在运行的任何版本。

如果这有帮助或者您有其他问题,请告诉我。

- 缺口

答案2

测试 ppa 仅限于特定用户,因此不会以这种方式发布使其工作的文件。

使用这个添加普通的 ppa,包应该更稳定

sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa

相关内容