存储库“http://ppa.launchpad.net/armagetronad-dev/ppa/ubuntu bionic Release”没有发布文件

Jef*_*tka 37 apt ppa

每当我尝试安装任何东西或运行时apt update,我都会收到此错误:

E: The repository 'http://ppa.launchpad.net/armagetronad-dev/ppa/ubuntu bionic Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details.
Run Code Online (Sandbox Code Playgroud)

我不够熟练,无法弄清楚这一点。我已经看到我可以尝试 ppa purge 但我不知道如何。

cos*_*bur 49

您可以在命令行中执行:

sudo apt-add-repository -r ppa:armagetronad-dev/ppa
sudo apt update -q
Run Code Online (Sandbox Code Playgroud)

第一行删除 repo,第二行更新包列表。之后,您可以安装新软件包、更新或删除它们。

  • `q` 表示 `quiet`,如 [此处](https://askubuntu.com/questions/258219/how-do-i-make-apt-get-install-less-noisy) (2认同)