在安装Eventlet时,遇到错误: 命令 'gcc' 失败,退出状态为1。

16 浏览
0 Comments

在安装Eventlet时,遇到错误: 命令 'gcc' 失败,退出状态为1。

我想在我的系统上安装 eventlet 以便进行软件部署中的\"Herd\"操作,但是终端显示了一个 gcc 错误:

  root@agrover-OptiPlex-780:~# easy_install -U eventlet
  Searching for eventlet
  Reading http://pypi.python.org/simple/eventlet/
  Reading http://wiki.secondlife.com/wiki/Eventlet
  Reading http://eventlet.net
   Best match: eventlet 0.9.16
    Processing eventlet-0.9.16-py2.7.egg
    eventlet 0.9.16 is already the active version in easy-install.pth
   Using /usr/local/lib/python2.7/dist-packages/eventlet-0.9.16-py2.7.egg
 Processing dependencies for eventlet
 Searching for greenlet>=0.3
Reading http://pypi.python.org/simple/greenlet/
Reading https://github.com/python-greenlet/greenlet
Reading http://bitbucket.org/ambroff/greenlet
Best match: greenlet 0.3.4
Downloading http://pypi.python.org/packages/source/g/greenlet/greenlet-   0.3.4.zip#md5=530a69acebbb0d66eb5abd83523d8272
Processing greenlet-0.3.4.zip
Writing /tmp/easy_install-_aeHYm/greenlet-0.3.4/setup.cfg
Running greenlet-0.3.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-_aeHYm/greenlet-0.3.4/egg-dist-tmp-t9_gbW
In file included from greenlet.c:5:0:
greenlet.h:8:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command 'gcc' failed with exit status 1`

为什么找不到 Python.h

admin 更改状态以发布 2023年5月21日
0
0 Comments

对于Fedora:

sudo yum install python-devel
sudo yum install libevent-devel

最后:

sudo easy_install gevent

0
0 Comments

安装失败是因为您没有安装Python开发头文件。在Ubuntu / Debian上,您可以通过apt进行安装:

sudo apt-get install python-dev 

如果使用Python3,请使用以下命令:

sudo apt-get install python3-dev

对于eventlet,您可能还需要安装libevent库,因此如果您遇到涉及该库的错误,请使用以下命令安装:

sudo apt-get install libevent-dev

0