erro Dependecies ao tentar insatll vinho

1

Quando faço

 sudo apt-get install wine

Eu recebo todos esses erros

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:
 wine : Depends: wine1.6 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Quando tento instalar o sudo apt-get install wine1.6 , obtenho:

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:
 wine1.6 : Depends: wine1.6-i386 (= 1:1.6.2-0ubuntu10)
E: Unable to correct problems, you have held broken packages.

Eu continuei tentando instalar todos os pacotes que eles me deram, mas isso me levou a um loop infinito, tentei fazer: sudo dpkg --add-architecture i386

Mas o mesmo problema, alguma sugestão?

    
por Marox Tn 06.02.2016 / 17:16

1 resposta

0

1) Abra o gerenciador de pacotes sinápticos e repare pacotes quebrados 2) Abra o terminal e digite:

sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install -y wine1.7

Você pode instalar o vinho 1.8

sudo apt-get -y install wine1.8

Ou vinho 1,9

sudo apt-get -y install wine1.9
    
por GAD3R 06.02.2016 / 18:55