将 .py 文件转换为 .exe 文件(我使用文本文件和图像来构建 py 文件)

Convert .py file to .exe file (I used text files and images to build the py file)

我刚刚完成我的应用程序,我想将我的 script/file 转换为可执行文件。我使用了一些文本文件、图像和其他东西来构建它。

一旦我将我的 py 文件转换为 exe 文件,只有当它位于图像、文本文件和实际 py 文件所在的同一文件夹中时,它才会起作用。

我创建了一个 zip 文件,它可以工作,但正如我所说,当你想要 运行 它时,你会看到所有的图像、信息......对于下载它的人来说看起来不太好

I also wanted to say thank you for the people who helped me with my other questions about fixing my program. I dont know how to tag them, but thank you.

我建议使用 auto-py-to-exe,这是一个包装程序,它简化了使用 pyinstaller 的许多任务,pyinstaller 是一个将 python 和脚本捆绑到可执行文件中的程序。

pip install auto-py-to-exe

然后可以 运行 和

auto-py-to-exe

它应该打开一个新的 window,您可以在其中配置选项(例如,如果您想要一个可执行文件,或者如果所有东西都在一个文件夹中。如果您的资产(图像等)是在不同的文件夹中,那么您可能必须通过配置 auto-py-to-exe window.

中的选项将它们添加到包中