python安装mysqlclient问题

Posted Davion2017

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python安装mysqlclient问题相关的知识,希望对你有一定的参考价值。

直接pip install mysqlclient会出错,系统缺少对应的操作库

ubuntu系

sudo apt install libmysqlclient-dev
pip install mysqlclient

centos系

yum install mysql-devel
pip install mysqlclient

windows

https://www.lfd.uci.edu/~gohlke/pythonlibs/网站上直接找对应的离线包下载安装

以上是关于python安装mysqlclient问题的主要内容,如果未能解决你的问题,请参考以下文章

Python3 - Pipenv 安装 mysqlclient?

无法在 Linux Ubuntu 上安装 mysqlclient-python

mac 安装 python mysqlclient 遇到的问题及解决方法

mac 安装 python mysqlclient 遇到的问题及解决方法

使用pip install mysqlclient命令安装mysqlclient失败?(基于Python)

ubuntu安装python的mysqlclient