web-dev-qa-db-fra.com

Problème d'installation de uuid-dev

$ 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.
2
coronaa

Vous devez rétrograder votre version libuuid1 de la version 2.27.1-6ubuntu3.1 à la version 2.27.1-6ubuntu3.

Vous pouvez utiliser apt-get pour effectuer une rétrogradation, reportez-vous à cette réponse .

Sudo apt-get install <package-name>=<package-version-number> OU
Sudo apt-get -t=<target release> install <package-name>

Si vous utilisez le gestionnaire de paquets synaptic, vous pouvez également simplement sélectionner le paquet (dans votre cas, rechercher et sélectionner libuuid1), puis aller au menu Package> Forcez la version .. pour choisir la version à installer, puis cliquez sur Appliquer .

2
Gary Wang

Entrez cette commande et réessayez.

Sudo apt-get install -f
0
Javad Garshasbi