O Ubuntu SDK está em conflito com o Amarok [duplicado]

1

O Apt removeu o Amarok depois de instalar o Ubuntu SDK devido a conflitos de dependências. Agora, quando tento reinstalá-lo de novo, recebo esta mensagem

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.
    
por EzzatA 20.02.2013 / 12:34

1 resposta

0

Você pode tentar instalar a versão mais recente do amarok a partir de seu ppa:

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

Se tiver sorte, funcionará e, além disso, você terá o novo Amarok 2.7, que eu acho que tem alguns novos recursos interessantes :-) Você pode ter que fazer um sudo apt-get upgrade antes de tentar instalar o Amarok.

Se isso não funcionar, você pode facilmente remover o ppa novamente:

sudo apt-add-repository --remove ppa:kubuntu-ppa/backports
sudo apt-get update
    
por André Stannek 20.02.2013 / 14:02