解决Python.h找不到问题

2021/6/14 12:24:59

本文主要是介绍解决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就成功了



这篇关于解决Python.h找不到问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程