一、现象
终端运行:pip install MySQLdb
报:
ERROR: Could not find a version that satisfies the requirement MySQLdb (from versions: none)
ERROR: No matching distribution found for MySQLdb
二、解决
因运行环境为Python3 ,
MySQLdb 用于 Python2 的环境模块, Python3中不支持
pymysql 用于 Python3
因此在Python3中用于链接Mysql数据库的接口时 用模块:pymysql,即安装命令为:
pip install pymysql
三、总结
多动手 多练习