解决Python.h找不到问题

对着背影说爱祢 提交于 2020-03-17 07:59:25

在linux系统上安装python的MySQLdb库时,提示

pip install MySQL
_mysql.c:29:20: fatal error: Python.h: No such file or directory
#include “Python.h”
^
compilation terminated.
error: command ‘gcc’ failed with exit status 1
找不到Python.h,这是因为没有安装python-dev

使用yum search python |grep devel

找到了可用版本

python-devel.x86_64 : The libraries and header files needed for Python
development

执行

yum install python-devel.x86_64
进行安装

安装成功之后,Python.h出现了

/usr/include/python2.7/Python.h

再安装MySQL就成功了

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!