cx_Freeze复杂的python程序

时间:2016-06-06 14:48:54

标签: python-3.4 cx-freeze

我正在尝试用我用python创建的文件创建一个可执行文件。我让cx_Freeze工作,但是一旦我尝试打开exe文件,就会说“没有名为...的模块”我试图用以下开头的程序制作一个可执行文件:

import serial
import time
import re
import tkinter
import math
from scipy.interpolate import interp1d
import numpy as np
import os

我的setup.py文件目前看起来像这样:

import cx_Freeze
import sys

base = None

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

executables = [cx_Freeze.Executable("SerialComsCombined.py", base=base)]

cx_Freeze.setup(
    name = "4DCT_Client",
    options = {"build_exe": {"packages":["tkinter"]}},
    version = "0.01",
    description = "Serial Coms Combined",
    executables = executables
    )

我觉得需要修改setup.py文件。有什么建议吗?

0 个答案:

没有答案