自动安装存储库

自动安装存储库

我在 Amazon Lightsail 上运行了一个 Ubuntu 20.04 LTS 实例,但在安装时遇到了问题lsphp74-imagick

$ sudo apt install lsphp74-imagick

回复:

The following packages have unmet dependencies:
lsphp74-imagick : 
Depends: libmagickcore-6.q16-3 (>= 8:6.9.6.8) but it is not installable               
Depends: libmagickwand-6.q16-3 (>= 8:6.9.6.8) but it is not installable
Recommends: ttf-dejavu-core but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

对于 libmagickcore,我得到以下内容:

$ sudo apt install libmagickcore-6.q16-3
..
E: Package 'libmagickcore-6.q16-3' has no installation candidate

不知道接下来该怎么办。有人遇到过这种情况吗?

任何帮助都将受到赞赏。

答案1

原始问题听起来像是存储库问题。事实也确实如此。

修复方法:

自动安装存储库

wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash

手动修复

你可能会发现过时的台词

grep -Ri litespeedtech /etc/apt/*

安装 GPG 密钥和源

wget -qO - https://rpms.litespeedtech.com/debian/lst_repo.gpg | sudo apt-key add -
sudo echo "deb http://rpms.litespeedtech.com/debian/ focal main" > /etc/apt/sources.list.d/openlitespeed.list

然后运行apt-get update它就消失了。

相关内容