从Ubuntu 12.04中缺少Python.h

我非常新的python.I安装了一个openflow控制器在我的Linux电脑(Ubunutu 12.04)调用RYU使用:
sudo  pip install ryu

我试图运行一个python文件使用ryu-manager如下所示。

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

这个错误的原因是什么?我试图找到Python.h文件使用:

sudo locate Python.h

我在我的系统找不到它。但是如果我运行:

python -V

我得到的输出

Python 2.7.3

Python.h应该在系统上吗?如果是这样,我应该安装什么来获得它?

这应该做:

sudo apt-get update; sudo apt-get install python-dev -y

它将安装任何缺少的标题。它帮助了我很多。

相关文章

ubuntu退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...