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 字节码的文件。我想通过我的可执行程序运行它们,而不需要 Python 解释器的大量过载。
有任何想法吗?
pyc 未编译为机器码。为此使用Shedskin。
你提到了解释器的巨大开销:你有没有证据表明编译步骤是巨大的开销?您可能会误解 .pyc 文件中的内容。Python 字节码不是机器码,它是由 Python 解释器执行的高级字节码。
无论如何,不,没有可以运行 .pyc 文件而不是 .py 文件的 Python 版本。