0

我使用 tkinter 在 python 中制作了我的第一个程序(一个 gui 计算器),并尝试使用 cx_freeze 将其转换为 exe 文件。我真的很困惑它是如何工作的。我在 python33 的脚本部分使用 cxfreeze quickstart 来制作我的设置文件。该程序名为计算器

from cx_Freeze import setup, Executable

# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(packages = [], excludes = [])

executables = [
    Executable('Calculator.py', 'Win32GUI')
]

setup(name='Calculator',
      version = '1.0',
      description = '',
      options = dict(build_exe = buildOptions),
      executables = executables)

当我进入控制台并输入 python setup.py build 我得到错误:

cx_Freeze.freezer.ConfigError: 没有名为 Win32GUI 的初始化脚本

谁能推荐一个使用 cx_Freeze 或任何其他程序将 python 代码制作为 exe 格式的教程?

4

1 回答 1

0

我建议你试试PyInstaller。要将脚本转换为 exe 文件,您必须在命令提示符下键入如下内容:

/path/to/python/pythonX.Y pyinstaller.py --onefile /path/to/your/script.py

就那么简单。

于 2013-06-10T18:24:39.027 回答