cxFreeze如何包含内部项目模块?

时间:2013-07-10 16:47:38

标签: python-3.x cx-freeze

更新

我怀疑这是cxFreeze中的错误,因为我理解这应该是 自动去。

结束更新

更新

我错过了cxFreeze给出的错误:

Missing modules:
? Test.MyClass imported from main__main__

结束更新

我不确定项目中的模块与sys或PyQt不同,所以我将使用内部项目模块。

我在下面有一些示例代码,我收到错误“ImportError:无法导入名称MyClass”。我很想知道如何让cxFreeze编译'Test.py'模块。

这是我的主要代码:

Main.py

import sys
from PyQt5.QtWidgets import QApplication, QMainWindow
#from guiObjects.MainWindow import MainWindow
from Test import MyClass

if __name__ == "__main__":

    # Initializing the main window
    app = QApplication(sys.argv)
    widget = QMainWindow()
    #mainWindow = MainWindow(widget)
    test = MyClass()
    widget.show()

    sys.exit(app.exec_())

Test.py

class MyClass(object):
    def __init__(self):
        pass

__ init.py __

'''empty'''

Setup.py

import sys
from cx_Freeze import setup, Executable

path_platforms = ( "C:\Python33\Lib\site-packages\PyQt5\plugins\platforms\qwindows.dll", "platforms\qwindows.dll" )

includes = ["re","sip","atexit","PyQt5.QtCore","PyQt5.QtGui"]
includefiles = [path_platforms]
excludes = [
    '_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
    'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
    'Tkconstants', 'Tkinter'
]
packages = ["os"]
path = []

# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {
                     "includes":      includes, 
                     "include_files": includefiles,
                     "excludes":      excludes, 
                     "packages":      packages, 
                     "path":          path
}

# GUI applications require a different base on Windows (the default is for a
# console application).
base = None
exe = None
if sys.platform == "win32":
    exe = Executable(
      script="../Main.py",
      initScript = None,
      base="Win32GUI",
      targetDir = r"dist",
      targetName="Main.exe",
      compress = True,
      copyDependentFiles = True,
      appendScriptToExe = False,
      appendScriptToLibrary = False,
      icon = None
    )

setup(  
      name = "Main",
      version = "0.1",
      author = 'me',
      description = "My GUI application!",
      options = {"build_exe": build_exe_options},
      executables = [exe]
)

2 个答案:

答案 0 :(得分:1)

当您在setup.py所在的子文件夹中运行Main.py时,会发生此问题。 我现在将setup.py放在与Main.py相同的文件夹中。并将我的.bat文件更改为python ../setup.py build install

这似乎是cx_Freeze中的一个错误,因为它适用于Python 2.7,但不适用于Python 3.3。

答案 1 :(得分:0)

你的test.py错了,你不能把函数留空,试试

class MyClass(object):
    def __init__(self):
        pass

并在setup.py mabye中将“Test”添加到“includes”

includes = ["re","sip","atexit","PyQt5.QtCore","PyQt5.QtGui", "Test"]