web-dev-qa-db-ja.com

UbuntuSDKがAmarokと競合する

依存関係の競合のため、AptはUbuntuSDKのインストール後に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
EzzatA

あなたは彼らのppaから最新のアマロックバージョンをインストールしてみることができます:

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

運が良ければそれはうまくいくでしょう、そしてそれに加えてあなたは私がいくつかの素晴らしい新機能を持っていると思う新しいAmarok2.7を持っています:-)あなたはAmarokをインストールしようとする前にSudo apt-get upgradeをしなければならないかもしれません。

それが機能しない場合は、ppaを簡単に再度削除できます。

Sudo apt-add-repository --remove ppa:kubuntu-ppa/backports
Sudo apt-get update
0
André Stannek