gevent/libevent.h:9:19:致命错误:event.h:没有这样的文件或目录

20 python virtualenv

我试图在我的本地文件夹上的Pyladies网站上工作.我克隆了回购,(https://github.com/pyladies/pyladies)!并创建了虚拟环境.但是,当我执行pip install -r要求时,我收到此错误

Installing collected packages: gevent, greenlet
Running setup.py install for gevent
building 'gevent.core' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -I/opt/local/include -fPIC -I/usr/include/python2.7 -c gevent/core.c -o build/temp.linux-i686-2.7/gevent/core.o
In file included from gevent/core.c:253:0:
gevent/libevent.h:9:19: fatal error: event.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
Complete output from command /home/akoppad/virt/pyladies/bin/python -c "import setuptools;__file__='/home/akoppad/virt/pyladies/build/gevent/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-4MSIGy-record/install-record.txt --install-headers /home/akoppad/virt/pyladies/include/site/python2.7:
running install

running build

running build_py

running build_ext

building 'gevent.core' extension

gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -I/opt/local/include -fPIC -I/usr/include/python2.7 -c gevent/core.c -o build/temp.linux-i686-2.7/gevent/core.o

In file included from gevent/core.c:253:0:

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

compilation terminated.

error: command 'gcc' failed with exit status 1

----------------------------------------
Command /home/akoppad/virt/pyladies/bin/python -c "import setuptools;__file__='/home/akoppad/virt/pyladies/build/gevent/setup.py';   exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-4MSIGy-record/install-record.txt --install-headers /home/akoppad/virt/pyladies/include/site/python2.7 failed with error code 1 in /home/akoppad/virt/pyladies/build/gevent
Storing complete log in /home/akoppad/.pip/pip.log.
Run Code Online (Sandbox Code Playgroud)

我试过这样做,sudo port install libevent CFLAGS =" - I/opt/local/include -L/opt/local/lib"pip install gevent

它说没有找到端口命令.

我不知道如何处理这个问题.谢谢!

Kha*_*nna 51

我有同样的问题,正如另一个答案建议我必须安装"libevent".它显然不再被称为"libevent-devel"(apt-get无法找到它),而是在做:

    $ apt-cache search libevent
Run Code Online (Sandbox Code Playgroud)

列出了一堆可用的包.

    $ apt-get install libevent-dev 
Run Code Online (Sandbox Code Playgroud)

为我工作.


sea*_*iao 11

我想你只是忘了在环境中安装"libevent".如果您使用的是OSX计算机,请尝试在此处安装brew http://mxcl.github.io/homebrew/并使用brew install libevent安装依赖项.如果您使用的是ubuntu计算机,可以尝试使用apt-get来安装相应的库.