解决Python.h找不到问题

在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就成功了

本博2017年4月开始自学,到20年2月已自学3年,不仅仅python,目前已经全栈WEB开发,全自动A股交易,深度学习也初步涉猎,这句话改于2020年2月16日。计划学习10年,40岁学成精英,如若不到,继续学习,终身保持学习状态。30岁之前看不惯社会天天抱怨,30岁突然醒悟,错全在自己身上,跟社会没有任何关系,故开始随时保持学习状态,向梦想冲刺。
原文地址:https://www.cnblogs.com/hushuning/p/14881810.html