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.
我不是在问我应该如何将我的脚本变成可执行文件。我知道像py2exe这样的工具。
我在问它是怎么发生的。
将解释过的 python 源代码转换为已编译的可执行文件的过程是什么?
它不是真正的编译可执行文件(如“编译为机器语言”)。它是脚本的字节码、解释器和脚本运行所需的所有库的捆绑包。您的脚本仍然被解释。