Attribute Error while using cx_Freeze

≯℡__Kan透↙ 提交于 2019-12-11 07:07:38

问题


while creating exe of my python game . I got the following error

my code in setup.py is

import cx_Freeze
import os

os.environ['TCL_LIBRARY'] = "C:\\Users\Vinayak Singla\\Appdata\\Local\\Programs\\Python\\Python36-32\\tcl\\tcl8.6"
os.environ['TK_LIBRARY'] = "C:\\Users\Vinayak Singla\\Appdata\\Local\\Programs\\Python\\Python36-32\\tcl\\tk8.6"

executables = [cx_Freeze.Executable("pong.py")]

cx_Freeze.setup(
    name="Pongy",
    options={"build_exe": {"packages":["pygame","sys","random","time"],"include_files":["boing.wav","out.wav"]}},
    executables = executables
)

Can anyone help me to solve this.


回答1:


You might need a version in your setup script. Like:

cx_Freeze.setup(
    name="Pongy",
    version='1.0',
    options={"build_exe": {"packages":["pygame","sys","random","time"],"include_files":["boing.wav","out.wav"]}},
    executables = executables
)

Hope this will solve your problem.



来源:https://stackoverflow.com/questions/45906514/attribute-error-while-using-cx-freeze

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!