解决问题:OSError: mysql_config not found

通过pip install mysqlclient时报出了OSError: mysql_config not found错误,如图:

image.png

原因是linux需要mysql相关的一些依赖包

yum install mysql-devel gcc gcc-devel python-devel
image.png

安装完毕后就可以正常pip install mysqlclient

你可能感兴趣的:(解决问题:OSError: mysql_config not found)