61

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!

larry
  • 3,927
  • 9
  • 35
  • 41

3 Answers3

90

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

yum install postgresql-devel

Update

If you still encounter issues with pg_config, you may need to add it to your PATH, e.g.:

export PATH=$PATH:/usr/pgsql-x.x/bin

where x.x is your version, such as /usr/pgsql-9.2./bin.

Banjer
  • 3,854
  • 11
  • 40
  • 47
  • 4
    This worked for me (I also needed pg_config to install psycopg2) – Tom Dalling May 21 '12 at 11:33
  • remember, if you are trying to do a global install (sudo pip install psycopg2) to add it to the right path. Wasn't working for me, even after supplying -`-install-option` with `pip install` and then I realized I was doing sudo pip install. – matchew Oct 17 '13 at 16:14
59

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

Peter Eisentraut
  • 3,575
  • 1
  • 23
  • 21
7

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
quanta
  • 50,327
  • 19
  • 152
  • 213