目前python3 不支持MySQLdb !!!
所以:
mysql.connector 是一个很好地替代品,但是mac上的mysql.connector 安装使用的是
pip3 install mysql-connector-python
会显示找不到这个库,所以可以去
https://dev.mysql.com/doc/connector-python/en/connector-python-installation.html
下载。
存在替代方案 直接使用
pip3 install PyMySQL
然后
用
import pymysql
替代
import mysql.connector