没有名为 'mysql' 的模块



我创建了一个Python脚本来将数据存储在MySQL中。它在PyCharm中正常工作。当转换为exe文件时,它不起作用。

这是从命令行进行的回溯:

Traceback (most recent call last):
File "myscript.py", line 1, in <module>
import mysql.connector
ModuleNotFoundError: No module named 'mysql'
[8428] Failed to execute script 'myscript' due to unhandled exception!

创建exe:的命令

pyinstaller --onefile --console CoinVolumes.py

我也尝试过auto-py-to-exe,但也出现了同样的错误。Mysql已安装。

使用以下命令:

pip install mysql-connector-python

之后验证:

$ python
Python 2.7.11 (default, Apr 26 2016, 13:18:56)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-54)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mysql.connector
>>>

在Python 3.6.9中,我可以使用Pip 3并执行以下操作:

pip3 install mysql
pip3 install mysql-connector-python

您需要自己运行mysql服务器。Pyinstaller工作正常,这里的问题是mysql服务器不是python的一部分,因此您需要手动启动服务器。另一种选择是使用sqlite,它不需要服务器。它内置在标准python中,不需要安装任何东西。

相关内容

  • 没有找到相关文章

最新更新