解决Python.h找不到问题

Posted 扈书宁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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找不到问题的主要内容,如果未能解决你的问题,请参考以下文章

找不到用于片段的id 0x7f0800c4的视图

学习 PyQt5。在我的代码片段中找不到错误 [关闭]

调用 onCreateView() 之前出现“找不到片段 id 的视图”错误

将 Python 添加到 C++:找不到 Python.h

Ubuntu安装pyaudio找不到python.h的问题

致命错误:安装 opencv 时找不到“Python.h”文件