cx_冻结丢失的模块

2024-06-16 10:53:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我对Python和cxúu Freeze还不熟悉。请帮我把它修好。

并运行命令:

python setup.py build

它给了我以下的错误。

Missing modules:

? System imported from serial.serialcli

? TERMIOS imported from serial.serialposix

? clr imported from serial.serialcli

? wx imported from wxversion

我正在使用以下setup.py文件。

# Let's start with some default (for me) imports...

from cx_Freeze import setup, Executable

# Process the includes, excludes and packages first

includes = []
excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
        'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
        'Tkconstants', 'Tkinter']
packages = []
path = []

GUI2Exe_Target_1 = Executable(
    # what to build
    script = "..\esp\main.py",
    initScript = None,
    base = 'Win32GUI',
    targetDir = r"dist",
    targetName = "acup_new.exe",
    compress = True,
    copyDependentFiles = True,
    appendScriptToExe = False,
    appendScriptToLibrary = False,
    icon = None
    )

setup(

    version = "0.1",
    description = "No Description",
    author = "No Author",
    name = "cx_Freeze Sample File",

    options = {"build_exe": {"includes": includes,
                 "excludes": excludes,
                 "packages": packages,
                 "path": path
                 }
           },

    executables = [GUI2Exe_Target_1]
    )

Tags: pathfrompybuildpackagessetupserialcx
1条回答
网友
1楼 · 发布于 2024-06-16 10:53:24

基于this question,似乎需要将这些模块添加到setup.py文件中的includes[]列表中。

我不记得在使用cx_Freeze时必须这样做,但一旦找到更多信息,我将编辑此答案。

相关问题 更多 >