欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu安装MySQL-python出现EnvironmentError: mysql_config not found错误

程序员文章站 2022-07-15 07:57:32
...

安装MySQL-python包报错EnvironmentError: mysql_config not found问题要如何来解决呢?

首先,错误提示是mysql_config找不到,ubuntu安装MySQL-python出现EnvironmentError: mysql_config not found错误

解决办法:

1、终端输入命令

sudo apt-get install libmysqlclient-dev

执行上面命令时,可能还会有遇到下面问题:ubuntu安装MySQL-python出现EnvironmentError: mysql_config not found错误
如果安装顺利,请略过,直接看步骤2。如果遇到同样问题,可以去到“设置”中的“软件和更新“”中,点开“更新”,勾选“”重要安全更新”和“推荐更新”
ubuntu安装MySQL-python出现EnvironmentError: mysql_config not found错误
关闭上面窗口后,在终端运行下面命令就能解决:

1、
sudo apt-get update
sudo apt-get install libmysqlclient-dev

2、
成功安装libmysqlclient-dev后,执行下面两条命令进行加载更新

sudo updatedb
locate mysql_config 

3、
试着运行下面命令来安装MySQL-python

pip install MySQL-python

这时候,应该就能成功安装MySQL-Python了。如果您也不幸遇到跟我一样遇到下面的问题,提示说:

_mysql.c:29:20: fatal error: Python.h: 没有那个文件或目录
#include "Python.h"
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

那么,请继续往下看。
ubuntu安装MySQL-python出现EnvironmentError: mysql_config not found错误
4、
终端运行一下命令完美解决

sudo apt-get install python-dev
pip install MySQL-python