将使用 pygame 的 python 程序编译为可执行文件
我想使用 pygame 将使用 pygame 的 python 程序编译为使用 py2exe 的可执行文件,但我遇到了一些问题。我在 Windows 命令行中运行该脚本,它似乎有效。它创建一个 dist 目录,但当我尝试打开 .exe 文件时,它会短暂打开一个命令行窗口,然后不执行任何操作。
这可能是因为我使用了 pygame 而 py2exe 不支持它吗?或者我是否需要将 pygame 库的副本放入与我的程序相同的目录中?
I wanted to compile my python program that uses pygame into an executable using py2exe but I'm experiencing some problems. I run the script in the windows command line and it seems to work. It creates a dist directory but when I try to open the .exe file, it briefly opens a command line window and then doesn't do anything.
Could this possibly be because I've used pygame and py2exe doesn't support it? Or do I need to put a copy of the pygame library into the same directory as my program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
pygame wiki 上有一个答案: http://pygame.org/wiki/Pygame2exe
要将 pygame 包含在可执行文件中,您需要编辑
BuildExe.__init__
There is an answer to this on the pygame wiki: http://pygame.org/wiki/Pygame2exe
To include pygame in the executable, you will need to edit
BuildExe.__init__
尝试从命令行运行 .exe 以查看它是否打印某种错误消息。可能它缺少一些 DLL,您需要在执行 py2exe 时手动指定这些 DLL。
这篇博客文章可能会有用。
Try running the .exe from the command line to see if it's printing some kind of error message. Probably it's missing some DLLs, which you'll need to manually specify when executing py2exe.
This blog post might be useful.
您应该使用 PyInstaller 将程序及其依赖项转换为独立的可执行文件
https://pypi.org/project/PyInstaller/
使用它就像运行 pyinstaller /path/to/yourscript.py 一样简单
You should use PyInstaller to turn your program and its dependencies into a standalone executable
https://pypi.org/project/PyInstaller/
Using it is as simple as running
pyinstaller /path/to/yourscript.py