新しい EC2 CentOS 5.3 64 ビットシステムにgeventをインストールしようとしています。
yum で利用可能な libevent バージョンは別のパッケージ (beanstalkd) には古すぎるためlibevent-1.4.13-stable
、次のコマンドを使用して手動でコンパイル/インストールしました。
./configure --prefix=/usr && make && make install
これは、gevent のインストールからの出力です。
[gevent-0.12.2]# python setup.py build --libevent /usr/lib
Using libevent 1.4.13-stable: libevent.so
running build
running build_py
running build_ext
Linking /usr/src/gevent-0.12.2/build/lib.linux-x86_64-2.6/gevent/core.so to
/usr/src/gevent-0.12.2/gevent/core.so
[gevent-0.12.2]# cd /path/to/my/project
[project]# python myscript.py
Traceback (most recent call last):
File "myscript.py", line 9, in <module>
from gevent.wsgi import WSGIServer as GeventServer
File "/usr/lib/python2.6/site-packages/gevent/__init__.py", line 32, in <module>
from gevent.core import reinit
ImportError: /usr/lib/python2.6/site-packages/gevent/core.so: undefined symbol: evhttp_accept_socket
ローカルの VirtualBox インスタンス (32 ビット) でまったく同じ手順を実行しましたが、エラーは表示されません。
どうすればこれを修正できますか?