ModuleNotFoundError:Python 3.8.2 上没有名为“_mysql”的模块

ModuleNotFoundError:Python 3.8.2 上没有名为“_mysql”的模块

我目前正在尝试运行一个 python3 脚本,但遇到了错误“ModuleNotFoundError:Python 3.8.2 上没有名为‘_mysql’的模块”。

我之前在安装 Ubuntu 时使用过相同的脚本,到目前为止它似乎运行良好。

我尝试查找错误,只出现了 1 个结果,但正如预期的那样,没有任何结果能够对该结果起作用。

有什么建议吗?谢谢。

答案1

安装python3-mysqldb

Ubuntu您可以通过以下命令安装该包:

sudo apt install python3-mysqldb

相关内容