cx_freeze打包exe问题

exe文件问题如图:
下载 (8.13 KB)
2011-05-21 09:47

Cannot import traceback module
Exception: No module named re
Originale exception LL load failed:找不到指定程序


搜索了好久也没有解决啊;
我的环境是PyQt4 Python3.1版本;
打包脚本:

import sys

from cx_Freeze import setup, Executable


base = None
if sys.platform == "win32":
    base = "Win32GUI"

setup(
        name = "simple_PyQt4",
        version = "0.1",
        description = "Sample cx_Freeze PyQt4 script",
        executables = [Executable("Burning.py", base = base)])

作者: superlemno   发布时间: 2011-05-21

回复 superlemno
加上 includes   试试。知道是那个dll 直接复制过去就行。

作者: 106033177   发布时间: 2011-05-21

本帖最后由 superlemno 于 2011-05-21 10:42 编辑

回复 106033177


我加过includes;也不行;我试过很多次;自己没有找了啊;多谢。

肯定是缺少哪个DLL;但是又不知道缺少哪个;

重复试验了几次;

原来QtCore4.dll 这个文件他没有找到;Copy这到目录下就可以了;

但是我有个疑问,我这个文件Path里面都有的;它却不去找;

作者: superlemno   发布时间: 2011-05-21