Unhandled error: ImportError: No module named MySQLdb
时间: 2023-11-21 11:04:56 浏览: 94
python 找不到mysqldb模块(ImportError: DLL load failed: 找不到指定的模块)
这是一个 ImportError 错误,说明你的 Python 环境中没有安装 MySQLdb 模块。你可以使用命令 `pip install mysqlclient` 安装这个模块。如果你使用的是 Python3.x 版本,则可以使用命令 `pip3 install mysqlclient` 安装。
阅读全文