天天看点

ubuntu使用 pip install mysqlclient 安装失败

ubuntu使用 pip install mysqlclient 安装失败 解决方法

问题描述——

ubuntu使用 pip install mysqlclient 安装失败

报错信息:

note: This error originates fron a subprocess,and is likely not a problen with pip.error: metadata-generation-failed x Encountered error while generating package metadata.—> see above for output.

note: This is an issue with the package nentioned above,not pip.

ubuntu使用 pip install mysqlclient 安装失败
ubuntu使用 pip install mysqlclient 安装失败

问题原因

ubuntu使用 pip install mysqlclient 安装 失败

当时以为重点是 ERROR: Could not find a version that satisfies the requirement mysqlclient xxx,搜遍互联网没找到解决方案。

然后看到有一句:OSError: mysql_config not found,这说明是 mysql_config的问题,于是我输入了一下 mysql_config,如下图:

ubuntu使用 pip install mysqlclient 安装失败

解决方法

输入了一下 ​

​mysql_config​

​,如下图:

ubuntu使用 pip install mysqlclient 安装失败
ubuntu使用 pip install mysqlclient 安装失败

上面提示要安装上面2个模块

用上面命令安装一下

ubuntu使用 pip install mysqlclient 安装失败

执行上面安装命令,安装一下就成功了

安装好后,用下面命令,再安装一下 mysqlclient

pip install mysqlclient      

继续阅读