'altinstall' python-devel; não consigo instalar o psycopg2 no centos

1

Eu instalei o python2.7 no meu

centos 2.6.32-431.17.1.el6.x86_64

seguindo estas instruções:

link

#after the yum stuff...
# Python 2.7.6:
wget http://python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
tar xf Python-2.7.6.tar.xz
cd Python-2.7.6
./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
make && make altinstall

Estou tentando instalar o psycopg2:

[stuff]# pip2.7 install psycopg2
...
./psycopg/psycopg.h:31:22: error: libpq-fe.h: No such file or directory
Ao pesquisar, isso significa que eu preciso instalar o python-devel (eu acho), mas não posso instalá-lo porque ele seria instalado para o meu padrão 2.6 no sistema.

Eu tentei instalar a partir da fonte:

[stuff]# python2.7  ./external_dependancies/psycopg2-2.5.3/setup.py install
Traceback (most recent call last):
  File "./external_dependancies/psycopg2-2.5.3/setup.py", line 474, in <module>
    use_pydatetime  = int(parser.get('build_ext', 'use_pydatetime'))
  File "/usr/local/lib/python2.7/ConfigParser.py", line 607, in get
    raise NoSectionError(section)
ConfigParser.NoSectionError: No section: 'build_ext'

O que eu preciso fazer para obter o python-devel (ou melhor ainda, o psycopg2) no meu sistema

    
por Jeff 17.07.2014 / 21:00

1 resposta

0

Eu estava perdendo este pacote:

libpqxx-devel.x86_64
    
por 18.07.2014 / 18:13