gpt4 book ai didi

python - 使用 cx_Freeze 时出现属性错误

转载 作者:太空宇宙 更新时间:2023-11-03 14:50:50 25 4
gpt4 key购买 nike

在创建我的 python 游戏的 exe 时。我收到以下错误Error

我在setup.py中的代码是

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
)

谁能帮我解决这个问题

最佳答案

您的安装脚本中可能需要一个版本。喜欢:

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

希望这能解决您的问题。

关于python - 使用 cx_Freeze 时出现属性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45906514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com