apt-get 404 错误?

apt-get 404 错误?

你好,我正在尝试安装

sudo apt-get install libmagick++-6.q16-5v5

我的操作系统是

Description:    Debian GNU/Linux 10 (buster)
Release:        10
Codename:       buster

当我尝试运行 apt-get update 时,出现以下错误。

Hit:1 http://security.debian.org/debian-security buster/updates InRelease
Hit:2 http://deb.debian.org/debian buster InRelease
Hit:3 http://deb.debian.org/debian buster-updates InRelease
Ign:4 http://ppa.launchpad.net/webupd8team/java/ubuntu groovy InRelease
Err:5 http://ppa.launchpad.net/webupd8team/java/ubuntu groovy Release
  404  Not Found [IP: 91.189.95.85 80]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/webupd8team/java/ubuntu groovy 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.

我忽略这一点并尝试安装 libMagick 但出现以下错误

    E: Unable to locate package libmagick++-6.q16-5v5
E: Couldn't find any package by glob 'libmagick++-6.q16-5v5'
E: Couldn't find any package by regex 'libmagick++-6.q16-5v5

我还能做些什么来安装这个吗?提前致谢。

答案1

以下存储库http://ppa.launchpad.net/webupd8team/java/ubuntu不支持groovy代号,这就是您得到404 error.所有支持的代号是此处列出

可以libmagick++通过以下方式安装在 Debian Buster 上:

sudo apt install libmagick++-6.q16-8

libmagick++-6.q16-5v5属于 Ubuntu Xenial。

答案2

(从评论转换而来。)

您正在运行 Debian,因此请删除 Ubuntu 的 ppa 条目,然后重试。

您真的需要 的精确版本吗libmagick++?如果没有,请尝试安装libmagick++而不是libmagick++-6.q16-5v5

相关内容