web-dev-qa-db-fra.com

pourquoi build-essential a échoué?

Je ne trouve pas de solution à ce problème:

constantia@constantia:~$ Sudo apt-get install build-essential
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:
 build-essential : Depends: dpkg-dev (>= 1.13.5) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

constantia@constantia:~$ Sudo apt-get install dpkg-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:
 dpkg-dev : Depends: libdpkg-Perl (= 1.17.5ubuntu5) but 1.17.5ubuntu5.2 is to be installed
            Recommends: build-essential but it is not going to be installed
            Recommends: fakeroot but it is not going to be installed
            Recommends: libalgorithm-merge-Perl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

constantia@constantia:~$ Sudo apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Désolé, si mes questions sont si stupides. Peut-être que quelqu'un m'explique d'où vient mon problème? Je ne touche pas du tout le système (nouvelle installation du 14.04). Je vous remercie.

6
dmgl

Exécutez Sudo apt-get install libdpkg-Perl=1.17.5ubuntu5 pour rétrograder libdpkg-Perl.

Vous avez en quelque sorte installé une version plus récente du paquet que celle qui se trouve dans les référentiels, ce qui pose des problèmes avec les autres paquets.

6
saiarcot895

Essayez le code:

Sudo apt-get update

mettre à jour votre liste de paquets.

Puis code:

Sudo apt-get autoclean

nettoyer les paquets partiels.

Puis code:

Sudo apt-get clean

nettoyer le cache d'apt.

Puis code:

Sudo apt-get autoremove

nettoiera toutes les dépendances inutiles.

Si, en même temps, vous pouvez identifier le paquet endommagé, ce code le supprimera avec force.

Code:

Sudo dpkg --remove -force --force-remove-reinstreq <package name>

Remplacez le nom du paquet par son vrai nom, bien sûr.

Ensuite, retournez à votre installation essentielle

Code:

Sudo apt-get install dpkg-dev
Sudo apt-get install build-essential

Voir, si cela fonctionne pour vous.

2
RCF

Pour moi, j'ai réinstallé

libdpkg-Perl

et cela a fonctionné. Vous pouvez autoriser Synaptic à rétrograder ce package si vous utilisez Synaptic.

0
Bob Yoplait