Ubuntu SDK 与 Amarok 冲突

Ubuntu SDK 与 Amarok 冲突

由于依赖项冲突,Apt 在安装 Ubuntu SDK 后删除了 Amarok。现在,当我尝试再次重新安装它时,我收到此消息

is7yx@is7yx-Satellite-L305:~$ sudo apt-get install amarok
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 amarok : Depends: amarok-common (= 2:2.6.0-0ubuntu2) but 2:2.6.0-0ubuntu2.1 is to be installed
          Depends: amarok-utils (= 2:2.6.0-0ubuntu2) but 2:2.6.0-0ubuntu2.1 is to be installed
          Recommends: media-player-infoxs but it is not installable
E: Unable to correct problems, you have held broken packages.

答案1

您可以尝试从其 ppa 安装最新的 amarok 版本:

sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt-get update
sudo apt-get install amarok

如果您很幸运,它会起作用,而且您还拥有新的 Amarok 2.7,我认为它有一些不错的新功能 :-) 您可能必须sudo apt-get upgrade在尝试安装 Amarok 之前做一个。

如果此方法不起作用,您可以轻松再次删除 ppa:

sudo apt-add-repository --remove ppa:kubuntu-ppa/backports
sudo apt-get update

相关内容