尝试冻结导入ctypes的python脚本时出现以下错误:
Warning: unknown modules remain: _bisect _ctypes _hashlib _heapq _locale _random _socket _ssl _struct _tkinter _weakref array binascii cStringIO collections datetime fcntl itertools math operator pyexpat readline select strop syslog termios time
,而ctypes是python2.5中的内置模块,并且正确识别ctypes的路径,如下所示:
P ctypes /usr/local/lib/python2.5/ctypes/__init__.py
m ctypes._endian /usr/local/lib/python2.5/ctypes/_endian.py
有没有办法手动复制一些文件并使其工作?有没有人成功地在一个独立的二进制文件中冻结了ctypes?
答案 0 :(得分:0)
我建议您使用py2exe或类似的东西而不是冻结。