- 论坛徽章:
- 0
|
回复 3# askandstudy
在网上搜到这样的东西,不过看不懂
cx_Freeze打包python32+tkinter BUG?
#author nathena
用cx_Freeze打包python32 tkinter桌面应用时,copy tcl和tk 库文件经常出现拷贝出错情况,究其原因,发现为tkinter._fix问题,如下代码:
prefix = os.path.join(sys.prefix,"tcl")
if not os.path.exists(prefix):
# devdir/../tcltk/lib
prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib")
prefix = os.path.abspath(prefix)
# if this does not exist, no further search is needed
if os.path.exists(prefix):
prefix = convert_path(prefix)
if "TCL_LIBRARY" not in os.environ:
for name in os.listdir(prefix):
if name.startswith("tcl"):
tcldir = os.path.join(prefix,name)
if os.path.isdir(tcldir):
os.environ["TCL_LIBRARY"] = tcldir
当tcl文件夹中的 tcl8 文件夹创建时间晚于 tcl8.5文件夹,那么cx_Freeze打包时复制的库文件为tcl8文件夹内的内容。
不解的是,为什么NTFS格式下,tcl8文件夹创建的时间都早于 tcl8.5,而fat32下的时间都晚于 tcl8.5 ,导致自动打包复制的文件错误,必须指定cx_Freeze includes
另,打包后的执行文件不能在中文目录下执行?貌似有cx_Freeze的补丁,但不知道怎么使用。 |
|