我想在我的系统上安装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
?
答案 0 :(得分:343)
您的安装失败,因为您没有安装python开发标头。你可以通过在ubuntu / debian上使用apt来实现这个目的:
sudo apt-get install python-dev
用于python3:
sudo apt-get install python3-dev
对于eventlet,您可能还需要安装libevent库,因此如果您在讨论时遇到错误,可以使用以下命令安装libevent:
sudo apt-get install libevent-dev
答案 1 :(得分:41)
对于Fedora:
sudo yum install python-devel
sudo yum install libevent-devel
最后:
sudo easy_install gevent
答案 2 :(得分:16)
我尝试了以上所有答案。但对我有用的是 CentOS :
sudo yum -y install gcc
sudo yum install python-devel
答案 3 :(得分:10)
对于Redhat版本(Centos 7)使用以下命令安装Python开发包
Python 2.7
sudo yum install python-dev
Python 3.4
sudo yum install python34-devel
如果您的问题没有解决,请尝试安装以下软件包 -
sudo yum install python-devel
sudo yum install openssl-devel
sudo yum install libffi-devel
答案 4 :(得分:7)
在 MacOS 上,我无法安装需要fbprophet
且需要pystan
进行编译的gcc
。我将始终遇到相同的错误:命令'gcc'失败,退出状态为1
我想我自己解决了这个问题:
我使用brew install gcc
安装了最新版本,最终版本为gcc-8
然后,我确保在运行gcc
时将使用gcc-8
。
之所以起作用,是因为我在自己的alias gcc='gcc-8
中添加了.zshrc
(与.bashrc
相同,但对于 zsh ),或者是因为我运行了export PATH=/usr/local/bin:$PATH
(请参阅comment)
也:我所有的尝试都在虚拟环境中进行,而我仅通过全局安装fbprophet
(使用 pip )成功,但在 venv
答案 5 :(得分:3)
对于CentOS 7.2:
LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.2.1511 (Core)
Release: 7.2.1511
Codename: Core
安装eventlet:
sudo yum install python-devel
sudo easy_install -ZU eventlet
终端信息:
[root@localhost ~]# easy_install -ZU eventlet
Searching for eventlet
Reading http://pypi.python.org/simple/eventlet/
Best match: eventlet 0.19.0
Downloading https://pypi.python.org/packages/5a/e8/ac80f330a80c18113df0f4f872fb741974ad2179f8c2a5e3e45f40214cef/eventlet-0.19.0.tar.gz#md5=fde857181347d5b7b921541367a99204
Processing eventlet-0.19.0.tar.gz
Running eventlet-0.19.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-Hh9GQY/eventlet-0.19.0/egg-dist-tmp-rBFoAx
Adding eventlet 0.19.0 to easy-install.pth file
Installed /usr/lib/python2.6/site-packages/eventlet-0.19.0-py2.6.egg
Processing dependencies for eventlet
Finished processing dependencies for eventlet
答案 6 :(得分:2)
对于openSUSE 42.1 Leap Linux使用此
sudo zypper install python3-devel
答案 7 :(得分:2)
试试这个:
persp3d(x, y, z, col = "red", alpha = 0.8)
surface3d(x, y, z, front = "lines", back = "lines")
我在Ubuntu 14.04上遇到了类似的问题。对我来说,以下Ubuntu包
答案 8 :(得分:2)
如果仍然无法使用,您可以尝试
sudo apt-get install build-essential
以我为例,它解决了问题。
答案 9 :(得分:1)
我正在使用 MacOS catalina 10.15.4 。没有发布的解决方案对我有用。对我有用的是:
partner_id
对于 python3
使用 pip3答案 10 :(得分:1)
如果您是Mac用户,请在终端机上尝试: xcode-select --install
然后接受安装请求,然后可以正常工作 https://github.com/python-pillow/Pillow/issues/3438
答案 11 :(得分:0)
从源代码构建并安装,这已在最新版本(10.3 +)中修复:
mkdir -p /tmp/install/netifaces/
cd /tmp/install/netifaces && wget -O "netifaces-0.10.4.tar.gz" "https://pypi.python.org/packages/source/n/netifaces/netifaces-0.10.4.tar.gz#md5=36da76e2cfadd24cc7510c2c0012eb1e"
tar xvzf netifaces-0.10.4.tar.gz
cd netifaces-0.10.4 && python setup.py install
答案 12 :(得分:0)
这是旧文章,但我在安装regex的AWS EC2上遇到了同样的问题。
yum install msbuild
然后下一个
sudo yum -y install gcc
答案 13 :(得分:0)
在 MacOS 上,尝试安装fbprophet
作为其依赖项之一的gcc
时也遇到了问题。
按照@ Boris的建议尝试了几个步骤之后,Facebook Prophet project page中的以下命令最终为我工作了。
conda install -c conda-forge fbprophet
它为fbprophet
安装了所有必需的依赖项。确保您已安装anaconda。
答案 14 :(得分:0)
类似地,我这样修复它(注意python34
):
sudo yum install python34-devel
答案 15 :(得分:0)
This page将为即将出现的所有其他lib问题挽救您的生命,
对于Alpine(> = 3.6),
使用apk --update --upgrade add gcc musl-dev jpeg-dev zlib-dev libffi-dev cairo-dev pango-dev gdk-pixbuf-dev
答案 16 :(得分:0)
sudo apt install gcc
它适用于 Ubuntu 20.10 上的 PyCharm。