报错:mysql_config not found

$ pip3 install mysqlclient

/bin/sh: mysql_config: 未找到命令
...
OSError: mysql_config not found

解决:
执行以下命令后再安装mysqlclient

$ yum -y install mysql-devel

参考
pip3 install mysqlclient 报错 “/bin/sh: 1: mysql_config: not found”的解决方法