我需要一些帮助来制作 Python 脚本的可执行文件。我已经尝试过cx_freeze
,但没有得到名为 re 的模块,我无法使用py2exe
,因为我使用的是 Python 3.3.2。
我的 setup.py 文件的代码cx_freeze
:
import sys
from cx_Freeze import setup, Executable
setup(
name = "10SecondDestruction" ,
version = "1.0" ,
description = "10SecondDestruction" ,
executables = [Executable("10 Second Destruction.py")] ,
)