如何将python程序转换为可执行文件[python 3.4.2]

2024-03-28 08:37:50 发布

您现在位置:Python中文网/ 问答频道 /正文

我想把Python3.4.2程序转换成一个可执行文件。我试过使用PyInstaller和Py2exe,但都没有移植到python 3.4.2套件。

我有别的办法吗?


Tags: 可执行文件套件pyinstaller办法py2exe
2条回答

您可以使用^{}(3.3中的新功能)。

The Python launcher for Windows is a utility which aids in the location and execution of different Python versions. It allows scripts (or the command-line) to indicate a preference for a specific Python version, and will locate and execute that version.

从一个在线论坛上得到的解决方案,cx_Freeze是跨平台的,并且与PyInstaller一样,它也支持Python 3.4

相关问题 更多 >