1
您好我使用cx_freeze 2.7的教程,我下面的每一次我使用的程序,將拿出一個AssertionError時間。這是我的setup.py文件,如果任何人希望看到:cx_freeze幫助Asse田
import cx_Freeze
executables = [cx_Freeze.Executable("Slither.py")]
cx_Freeze.setup(
name = "Slither",
options = {"build_exe": {"packages":["pygame"],"include_files": ["apple.png","snakehead.png","funnydog.png"]}},
executables = executables
)