Python Doc指出:
Frozen modules are modules written in Python whose compiled byte-code
object is incorporated into a custom-built Python interpreter by
Python’s freeze utility. See Tools/freeze/ for now.
http://docs.python.org/library/imp.html#imp.init_frozen
我不明白什么是冻结实用程序?如何使用?为什么要使用它?
解决方法:
该链接详细说明了Python Freeze实用工具:http://wiki.python.org/moin/Freeze
简而言之,它创建了可移植版本的python脚本,该脚本带有自己的内置解释器(基本上像二进制可执行文件),因此您可以在没有python的计算机上运行它.