2012-03-17 92 views
7

我试图为Python安装gevent-websocket(http://www.gelens.org/code/gevent-websocket/),但是当我运行easy_install gevent-websocket我得到“命令”gcc'失败,退出状态1“。'gcc'以退出状态1失败,试图安装gevent-websocket

以下是终端的完整输出。

[email protected]:~/Desktop/Code$ sudo easy_install gevent-websocket 
install_dir /usr/local/lib/python2.6/dist-packages/ 
Searching for gevent-websocket 
Best match: gevent-websocket 0.3.4 
Processing gevent_websocket-0.3.4-py2.6.egg 
gevent-websocket 0.3.4 is already the active version in easy-install.pth 

Using /usr/local/lib/python2.6/dist-packages/gevent_websocket-0.3.4-py2.6.egg 
Processing dependencies for gevent-websocket 
Searching for gevent 
Reading http://pypi.python.org/simple/gevent/ 
Reading http://www.gevent.org/ 
Reading http://gevent.org/ 
Best match: gevent 0.13.6 
Downloading http://pypi.python.org/packages/source/g/gevent/gevent-0.13.6.tar.gz#md5=7c836ce2315d44ba0af6134efbcd38c9 
Processing gevent-0.13.6.tar.gz 
Running gevent-0.13.6/setup.py -q bdist_egg --dist-dir /tmp/easy_install-zChaNp/gevent-0.13.6/egg-dist-tmp-cPxcYh 
In file included from gevent/core.c:225: 
gevent/libevent.h:9: fatal error: event.h: No such file or directory 
compilation terminated. 
error: Setup script exited with error: command 'gcc' failed with exit status 1 
[email protected]:~/Desktop/Code$ 

我也在尝试pip安装时遇到同样的错误,所以我对接下来要做的事情有点无知。输出结果显示“gevent-websocket 0.3.4已经是easy-install.pth中的活动版本”,我不确定这意味着什么,但我知道如果我尝试导入gevent或geventwebsocket,它会说模块不存在。

回答

13
gevent/libevent.h:9: fatal error: event.h: No such file or directory 

为你的发行版安装libevent的开发包。

在Ubuntu下,它是libevent-dev

5

如果你是在Ubuntu上键入以下内容:

sudo apt-get install libevent-dev 
pip install gevent 
相关问题