cx_freeze 帮助 AssertionError
Posted
技术标签:
【中文标题】cx_freeze 帮助 AssertionError【英文标题】:cx_freeze help AssertionError 【发布时间】:2015-09-27 10:41:37 【问题描述】:您好,我正在使用 cx_freeze 2.7 作为我正在学习的教程,每次我使用该程序时都会出现 AssertionError。如果有人想看,这是我的 setup.py 文件:
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
)
【问题讨论】:
【参考方案1】:断言错误意味着“slither.py”中的某些断言没有被断言;为什么不尝试删除该断言行并重试。也就是说,删除所有assert
关键字行,然后重试。
【讨论】:
以上是关于cx_freeze 帮助 AssertionError的主要内容,如果未能解决你的问题,请参考以下文章