从Ubuntu 12.04中缺lessPython.h
我对Python非常陌生。我在我的Linux PC(Ubunutu 12.04)上安装了一个名为RYU的openflow控制器,使用:
sudo pip install ryu
我试图运行一个使用ryu-manager的python文件,如下所示。
sudo ryu-manager simple_switch.py Traceback (most recent call last): File "/usr/local/bin/ryu-manager", line 19, in <module> import gevent ImportError: No module named gevent
然后我试图安装gevent使用:
sudo pip install gevent gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c gevent/core.c -o build/temp.linux-x86_64-2.7/gevent/core.o gevent/core.c:4:20: fatal error: Python.h: No such file or directory compilation terminated. error: command 'gcc' failed with exit status 1
这个错误的原因是什么? 我试图findPython.h文件使用:
sudo locate Python.h
我无法在我的系统上find它。但是,如果我运行:
python -V
我得到的输出:
Python 2.7.3
Python.h应该在系统上吗? 如果是这样,我应该安装什么来获得它?
这应该做到这一点:
sudo apt-get update; sudo apt-get install python-dev -y
它会安装任何缺less的标题。 这对我帮助很大。
即使你安装了Python,头文件和库通常也不会默认安装。 在Ubuntu上,他们进来一个单独的包,称为python-dev
。
直接安装gevent
– sudo apt-get install python-gevent
。