pip3 install mysqlclient时报出了OSError: mysql_config not found错误

572 阅读1分钟

pip3 install mysqlclient 时报出了OSError: mysql_config not found错误

报错因为linux需要mysql相关的一些依赖包

yum install mysql-devel gcc gcc-devel python-devel

再次执行pip3 install mysqlclient,即可成功安装