64

Python librarygevent版本 0.13.6(PyPI 上的当前版本)不会pip install在 OS X Lion、Python 2.7(可能还有其他版本)上运行。它在 Snow Leopard 上运行良好。

我怎样才能安装这个库?

如果可以使用pip install,而不是手动或自定义过程来完成,则可以加分,因为这样它将与自动构建很好地配合。

这是我的pip install输出:

pip install gevent
Downloading/unpacking gevent
  Running setup.py egg_info for package gevent

Requirement already satisfied (use --upgrade to upgrade): greenlet in ./tl_env/lib/python2.7/site-packages (from gevent)
Installing collected packages: gevent
  Running setup.py install for gevent
    building 'gevent.core' extension
    gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c gevent/core.c -o build/temp.macosx-10.6-intel-2.7/gevent/core.o
    In file included from gevent/core.c:225:
    gevent/libevent.h:9:19: error: event.h: No such file or directory
    gevent/libevent.h:38:20: error: evhttp.h: No such file or directory
    gevent/libevent.h:39:19: error: evdns.h: No such file or directory
    gevent/core.c:361: error: field ‘ev’ has incomplete type
    gevent/core.c:741: warning: parameter names (without types) in function declaration
    gevent/core.c: In function ‘__pyx_f_6gevent_4core___event_handler’:
    gevent/core.c:1619: error: ‘EV_READ’ undeclared (first use in this function)
    gevent/core.c:1619: error: (Each undeclared identifier is reported only once
    gevent/core.c:15376: warning: assignment makes pointer from integer without a cast
   [... about 1000 more lines of compiler errors...]
    gevent/core.c:15385: error: dereferencing pointer to incomplete type
    gevent/core.c: In function ‘__pyx_pf_6gevent_4core_4http___init__’:
    gevent/core.c:15559: warning: assignment makes pointer from integer without a cast
    gevent/core.c: At top level:
    gevent/core.c:21272: error: expected ‘)’ before ‘val’
    lipo: can't figure out the architecture type of: /var/folders/s5/t94kn0p10hdgxzx9_9sprpg40000gq/T//cczk54q7.out
    error: command 'gcc-4.2' failed with exit status 1
    Complete output from command /Users/jacob/code/toplevel/tl_env/bin/python -c "import setuptools;__file__='/Users/jacob/code/toplevel/tl_env/build/gevent/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /var/folders/s5/t94kn0p10hdgxzx9_9sprpg40000gq/T/pip-s2hPd3-record/install-record.txt --install-headers /Users/jacob/code/toplevel/tl_env/bin/../include/site/python2.7:
    running install

running build

running build_py

running build_ext

building 'gevent.core' extension

gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c gevent/core.c -o build/temp.macosx-10.6-intel-2.7/gevent/core.o
4

10 回答 10

114

不要发布整个内容!这太多了!90%的时候,第一个错误就足够了……

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

这意味着event.h没有安装提供头文件的库。该库称为 libevent(网站)。

一般来说,像这样的编译错误是构建脚本中的一个缺陷。构建脚本应该给出一个错误消息,指出 libevent 没有安装,这是一个错误,它没有安装。

从 MacPorts 获取 libevent,然后使用CFLAGS环境变量手动告诉编译器在哪里找到event.h以及libevent在运行 pip 时。

sudo port install libevent
CFLAGS="-I /opt/local/include -L /opt/local/lib" pip install gevent

您还可以使用自制软件安装 libevent :(brew install libevent
来自 David Wolever 的评论)

于 2011-10-03T01:38:09.350 回答
24
CFLAGS='-std=c99' pip install gevent

参见:无法安装 gevent OSX 10.11

在 OS X 10.11 上,clang 使用 c11 作为默认值,所以只需将其转回 c99。

于 2015-10-30T06:38:06.543 回答
18

过了一会儿,我意识到上面提到的 CFLAGS 变量的路径在从端口安装 libevent 时有效,而不是从 brew 安装。以下对我有用(在 OSX Mavericks 上):

$ brew install libevent
$ export CFLAGS="-I /usr/local/Cellar/libevent/2.0.21/include -L /usr/local/Cellar/libevent/2.0.21/lib"
$ pip install gevent
于 2013-10-24T19:02:51.557 回答
6

这是我发现最简单的方法:

使用自制软件安装 libevent

$ brew install libevent

安装 gevent

$ pip install gevent

这是我让它工作的唯一方法。

于 2013-08-09T00:34:21.500 回答
4

在雪豹上寻求安装帮助时找到了这个答案,发布这个以防其他人遇到同样的问题。

我通过 macports 安装了 libevent。

导出 CFLAGS=-I/opt/local/include 导出 LDFLAGS=-L/opt/local/lib sudo pip install gevent

于 2013-02-23T18:45:22.513 回答
2

我通过 brew 安装了 libevent,但它也失败了,工作原理与 Stephen 所做的类似,但指向 brew 默认安装:

CFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib pip install gevent

于 2013-08-27T20:43:32.827 回答
0

如果您从源安装所有内容并使用 csh,则以下适用于 mac os 10.9

  1. 下载最新的稳定版http://libevent.org/ libevent-2.0.21-stable

    • 。/配置
    • 制作
    • 须藤使安装
  2. virtualenv 环境

  3. 源环境/bin/activate.csh

  4. setenv CFLAGS "-I /usr/local/include -L /usr/local/lib"

  5. 点安装 gevent

于 2013-10-26T22:25:55.033 回答
0

我使用 virtualenv 和 virtualenv 包装器,所以我希望它是自包含的。我让 gevent 像这样工作:

假设您有虚拟环境设置,那么:

workon {my_virtual_env}

然后下载 libevent 并将其安装到 virtualenv 上。

curl -L -O https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz

tar -xzf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable
./configure --prefix="$VIRTUAL_ENV"
make && make install

我假设你已经安装了 gcc 5+(我使用 brew)

希望这可以帮助。

于 2015-09-06T01:58:46.813 回答
0
sudo pip install cython git+git://github.com/gevent/gevent.git#egg=gevent
于 2015-09-20T08:02:40.647 回答
0

我正在使用 MacOs High Sierra (10.13.3) 首先我做了: brew install libevent

我将我的 pip 版本升级到 pip-18.0。然后尝试使用以下内容再次安装:-

pip install gevent

有效。

于 2018-09-23T16:30:10.907 回答