In order to develop one web application based on postgresql, i need to install libpq on my centos.

I can install it by "apt-get install libpq-dev" on ubuntu, but i can not install it on centos by "yum install libpq".

Who can tell me how to install it, thanks!

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The package is called postgresql-libs on Red Hat and derived distributions.

link|improve this answer
feedback

It is libpqxx:

Name       : libpqxx-devel
Arch       : x86_64
Version    : 2.6.9
Release    : 3.el5.rf
Size       : 1.4 M
Repo       : rpmforge
Summary    : Header files, libraries and development documentation for libpqxx.
URL        : http://pqxx.org/
License    : BSD
Description: This package contains the header files, static libraries and development
           : documentation for libpqxx. If you like to develop programs using libpqxx,
           : you will need to install libpqxx-devel.

You can install it from rpmforge or epel repo:

# yum install libpqxx-devel
link|improve this answer
No, that's a different package. – Peter Eisentraut Sep 29 '11 at 13:44
xx means C++. – quanta Sep 29 '11 at 14:06
It's correct answer – dba.in.ua Dec 14 '11 at 18:52
feedback

I just had to install this on my CentOS 6 server since psycopg2 required pg_config. Boo yah:

yum install postgresql-devel
link|improve this answer
This worked for me (I also needed pg_config to install psycopg2) – Tom Dalling May 21 at 11:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.