nie można zainstalować libpq-dev w Ubuntu 14.04


12

Nie mogę zainstalować libpq-dev dla postgresql, próbowałem

sudo apt-get install libpq-dev

i wyjście

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.

jak rozwiązać ten problem?


sprawdź tutaj, włącz wszystkie, jak pokazano na tym obrazku!
Ravan

Jaka jest wydajność dpkg --get-selections | grep hold?
Ron

Odpowiedzi:


24

Problem jest rozwiązany!

Rozwiązałem to przez usunięcie libpq5:

sudo apt-get remove libpq5
sudo apt-get install libpq-dev

Tak prosty! Do Twojej wiadomości - musiałem sudo apt-get updatenajpierw, ponieważ nie miałem najnowszych źródeł (uruchomionych na obrazie Ubuntu 14.04 firmy DigitalOcean, który prawdopodobnie jest nieco stary)
user2490003

2

Problem można rozwiązać, wykonując następujące czynności:

sudo apt-get update
sudo apt-get remove libpq5
sudo apt-get install libpq-dev
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.