1

新しい 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 ビット) でまったく同じ手順を実行しましたが、エラーは表示されません。

どうすればこれを修正できますか?

4

1 に答える 1

3

最も簡単な修正は、 git リポジトリのクローンを作成し、wip-allブランチに切り替えて、python setup.py build_libevent build installgevent に対して静的に libevent を取得してビルドするものを実行することでした。

# git clone http://github.com/schmir/gevent.git
# cd gevent
# git branch -a
* upstream
  origin/HEAD
  origin/close-socket-cancel-event
  origin/pywsgi-without-basehttpserver
  origin/upstream
  origin/wip-all
  origin/wip-setup-config
# git checkout origin/wip-all
# python setup.py build_libevent build install

詳細はこちら

于 2010-05-18T09:28:49.240 に答える