如何在更新的 Ubuntu 14.04 上安装 gevent
How to install gevent on an updated Ubuntu 14.04
最近,当我尝试安装 gevent
1.0.2 时,出现以下错误:
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DLIBEV_EMBED=1 -DEV_COMMON= -DEV_CLEANUP_ENABLE=0 -DEV_EMBED_ENABLE=0 -DEV_PERIODIC_ENABLE=0 -Ibuild/temp.linux-x86_64-2.7/libev -Ilibev -I/usr/include/python2.7 -c gevent/gevent.corecext.c -o build/temp.linux-x86_64-2.7/gevent/gevent.corecext.o
In file included from gevent/libev.h:2:0,
from gevent/gevent.corecext.c:249:
libev/ev.c:45:22: fatal error: config.h: Aucun fichier ou dossier de ce type
# include "config.h"
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
我错过了什么?无论我是否安装 libev-dev
或不安装,它都会在相同的错误处停止。
检查 TMPDIR 没有 "noexec" 标志。
或者您可以 运行 点子 TMPDIR=/home/$USER/tmp pip install gevent
。
最近,当我尝试安装 gevent
1.0.2 时,出现以下错误:
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DLIBEV_EMBED=1 -DEV_COMMON= -DEV_CLEANUP_ENABLE=0 -DEV_EMBED_ENABLE=0 -DEV_PERIODIC_ENABLE=0 -Ibuild/temp.linux-x86_64-2.7/libev -Ilibev -I/usr/include/python2.7 -c gevent/gevent.corecext.c -o build/temp.linux-x86_64-2.7/gevent/gevent.corecext.o
In file included from gevent/libev.h:2:0,
from gevent/gevent.corecext.c:249:
libev/ev.c:45:22: fatal error: config.h: Aucun fichier ou dossier de ce type
# include "config.h"
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
我错过了什么?无论我是否安装 libev-dev
或不安装,它都会在相同的错误处停止。
检查 TMPDIR 没有 "noexec" 标志。
或者您可以 运行 点子 TMPDIR=/home/$USER/tmp pip install gevent
。