如何将 Python 文件转换为 .exe 文件?

How can I convert a Python file to a .exe file?

我在网上看到了很多选项,但是 none 似乎支持 Python 3.8。有没有办法再将 python 项目转换为 .exe?如果可以,我该怎么做?

编辑: 我已经多次尝试 PyInstaller,在它被推荐之前和之后,但我不断收到巨大的错误消息,我不知道如何理解。

使用pyinstaller.

示例:pyinstaller yourfile.py -F --onefile

这会将您的代码转换为 Windows 上的 .exe 文件。

要安装 PyInstaller,您只需使用 pip,因此 pip install PyInstallerpip3 install PyInstaller

你也可以确保你有最新的pyinstaller开发版本:pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz