2011-12-25 72 views
17

我试图在我的Linux服务器上从源代码安装Linux上的扭曲。 当我使用这个命令setup.py install,它具有以下错误消息失败:Linux上的扭曲安装失败

twisted/runner/portmap.c:10:20: error: Python.h: No such file or directory 
twisted/runner/portmap.c:14: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token 
twisted/runner/portmap.c:31: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token 
twisted/runner/portmap.c:45: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PortmapMethods’ 
twisted/runner/portmap.c: In function ‘initportmap’: 
twisted/runner/portmap.c:55: warning: implicit declaration of function ‘Py_InitModule’ 
twisted/runner/portmap.c:55: error: ‘PortmapMethods’ undeclared (first use in this function) 
twisted/runner/portmap.c:55: error: (Each undeclared identifier is reported only once 
twisted/runner/portmap.c:55: error: for each function it appears in.) 
error: command 'gcc' failed with exit status 1 

BTW,我没有那个机器上的root权限,Python安装在我家,不/usr/bin

+0

可能重复[ubuntu:我有python,但gcc无法找到Python.h](http://stackoverflow.com/questions/8282231/ubuntu-i-have-python-but-gcc-cant-find- python-h) – 2011-12-31 20:13:44

回答

41

编译器无法找到python开发标头。要求系统管理员在CentOS上安装python-devel或在Debian,Ubuntu及其衍生产品上安装python-dev。这应该有所帮助。

+0

'python3-dev' if you use python3 – 2018-03-01 11:41:52