2015-09-27 81 views
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 


    ) 

回答

0

斷言錯誤意味着你的「slither.py」一些斷言的事情是沒有得到斷言;你爲什麼不嘗試刪除該斷言行,然後再試一次。換句話說,刪除所有assert關鍵字行並重試。