kann libpq-dev in ubuntu 14.04 nicht installieren

11

Ich kann libpq-dev nicht für postgresql installieren, ich habe es versucht

sudo apt-get install libpq-dev

und Ausgabe

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:
 libpq-dev : Depends: libpq5 (= 9.3.9-0ubuntu0.14.04) but 9.4.4-1.pgdg14.04+1 is to be installed
E: Unable to correct problems, you have held broken packages.

Wie kann ich dieses Problem beheben?

Indra bin Ridwan
quelle
siehe hier aktivieren alle wie in diesem Bild gezeigt!
Ravan
Was ist die Ausgabe von dpkg --get-selections | grep hold?
Ron

Antworten:

23

Das Problem ist gelöst!

Ich habe das mit remove gelöst libpq5:

sudo apt-get remove libpq5
sudo apt-get install libpq-dev
Indra bin Ridwan
quelle
So einfach! Zu Ihrer Information - Ich musste sudo apt-get updatezuerst, weil ich nicht die neuesten Quellen hatte (läuft auf DigitalOcean Ubuntu 14.04 Image, das wahrscheinlich ein bisschen alt ist)
user2490003