首页 > 编程语言 > 详细

解决Python.h找不到问题

时间:2021-06-14 10:47:00      阅读:27      评论:0      收藏:0      [点我收藏+]

在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
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
 
 

找不到Python.h,这是因为没有安装python-dev

 

使用yum search python |grep devel

找到了可用版本

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

 

执行

yum  install python-devel.x86_64
  • 1.
 
 

进行安装

 

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

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

 

再安装MySQL就成功了

解决Python.h找不到问题

原文:https://www.cnblogs.com/hushuning/p/14881810.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!