私のコンピュータに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