내 컴퓨터에 python2.7을 설치했습니다.
centos 2.6.32-431.17.1.el6.x86_64
다음 지침을 따르십시오.
http://tooomuchdata.com/2014/02/16/how-to-install-python-on-centos/
#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
psycopg2를 설치하려고 합니다.
[stuff]# pip2.7 install psycopg2
...
./psycopg/psycopg.h:31:22: error: libpq-fe.h: No such file or directory
조사한 결과 python-devel을 설치해야 한다는 뜻이지만(제 생각에는) 시스템에 기본적으로 2.6이 설치되기 때문에 설치할 수 없습니다.
소스에서 설치를 시도했습니다.
[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'
내 시스템에 python-devel(또는 더 나은 psycopg2)을 설치하려면 어떻게 해야 합니까?
답변1
이 패키지가 없습니다:
libpqxx-devel.x86_64