Python 独立可执行文件

Python standalone executable

我希望能够创建 Python 没有任何依赖项的独立可执行文件。基本上,一个封闭源代码的可执行文件,因此任何人 end-user/client 都可以使用我的应用程序。 我知道模块 py2exe;但是,您似乎需要一些 .pyc 文件才能真正 运行 .exe 文件。 我正在使用 Python 2.7.x

如有任何帮助,我们将不胜感激。

检查 PyInstaller。这是 py2exe

的替代品

http://www.pyinstaller.org/

pip install pyinstaller

pyinstaller yourprogram.py