dashoumeixi 2013-06-22
在Mac OS X中使用pip安装gevent出现错误提示:
fatal error: 'event.h' file not found
这是因为gevent建立在libevent库之上,必须先安装libevent,libevent中提供了event.h头文件。
可以使用MacPorts安装libevent,命令如下:
sudo port install libevent
然后手动将event.h和libevent添加到CFLAGS环境变量中:
CFLAGS="-I /opt/local/include -L /opt/local/lib" pip install gevent
在Ubuntu中安装gevent:
首先安装libevent,在libevent.org下载最新稳定版本libevent-2.0.21-stable.tar.gz,提取压缩包内容。
进入解压后文件夹:
接下来安装gevent: