无法获取 http://ppa.launchpad.net

无法获取 http://ppa.launchpad.net

当我跑步时

sudo apt-get update

我总是得到这样的输出:

...

E: Failed to fetch http://ppa.launchpad.net/q-quark/equalx/ubuntu/dists/xenial/main/source/Sources  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead

我该如何修复它?

答案1

PPA不存在;这就是它返回的原因404

  1. 检查此条PPA/etc/apt/sources.list/etc/apt/sources.list.d/*删除类似的条目:

    deb  http://ppa.launchpad.net/q-quark/equalx/ubuntu xenial main
    
  2. 之后运行命令:

    sudo apt-get update
    

答案2

404是互联网俚语,表示“对象未找到”。源站点显示为和版本equalx提供的。您要求的是。Saucy (13.10)Trusty (14.04)xenial

要么等到开发人员更新 PPA,要么下载源代码并自己为 Xenial 构建它(这很难)。

相关内容