Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 python GUI 应用程序。我想在我朋友的计算机上运行代码,他的计算机中没有 python 解释器,并且由于无法连接到互联网而无法下载。我该怎么做发生?
使用 py2exe(适用于 Windows)、py2app(适用于 Mac)或 cx_freeze(适用于 Linux)将 Python 解释器、您的程序和标准库捆绑到一个可执行文件中,您可以在完全没有 Python 的机器上使用。
PS:如果你朋友的电脑不在网上,但是你给他你的程序,你也可以给他找Python的工具包等等。
py2exe是一个库,允许您为 Windows 编译 Python 可执行文件。还有cx_Freeze,它是跨平台的。