我最近创建了使用 cx_freeze 来创建 python 3.2.2 exe 文件。当我尝试运行 exe 文件时,什么也没发生。
这是我的 test.py 文件的代码:
print("hello world")
for i in range(5):
print(i)
这是我的 testSetup.py 文件的代码:
from cx_Freeze import setup, Executable
exe = Executable(
script="test.py",
base="Win32GUI",
targetName="Test.exe"
)
setup(
name = "Test",
version = "0.1",
description = "I wish programming was this easy",
executables = [exe])
cx_freeze 创建的构建目录有一个名为 exe.win32-3.2 的文件夹,其中包含以下文件:
bz2.pyd
library.zip
python32.dll
Test.exe
unicodedata.pyd