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")] ,
)