Problema ao instalar o uuid-dev

1
$ sudo apt-get install uuid-dev
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:
 uuid-dev : Depends: libuuid1 (= 2.27.1-6ubuntu3) but 2.27.1-6ubuntu3.1 is to be installed
E: Unable to correct problems, you have held broken packages.
    
por coronaa 09.02.2017 / 17:01

2 respostas

2

Você precisa fazer o downgrade de sua versão libuuid1 de 2.27.1-6ubuntu3.1 para 2.27.1-6ubuntu3.

Você pode usar apt-get para fazer um downgrade, consulte esta resposta .

sudo apt-get install <package-name>=<package-version-number> OR sudo apt-get -t=<target release> install <package-name>

Se você estiver usando synaptic gerenciador de pacotes, também pode simplesmente selecionar o pacote (no seu caso, pesquisar e selecionar libuuid1 ) e ir ao menu Pacote > Force Version .. para escolher a versão que gostaria de instalar, depois clique em Aplicar .

    
por Gary Wang 18.10.2017 / 05:35
0

Digite este comando e tente novamente

sudo apt-get install -f
    
por Javad Garshasbi 09.02.2017 / 18:05