我已经制作了一个我用Python制作的游戏的.exe文件,但我不确定如何使该exe文件有一个图标,因为它看起来枯燥乏味。我想以某种方式让图标成为小行星的照片,因为我制作了游戏中的小行星。我用cx_freeze编译它。
答案 0 :(得分:4)
将其添加到setup.py
文件中的选项:
setup(
...
options={
"build_exe": {
"icon": "path/to/icon.ico"
}
}
)
答案 1 :(得分:0)
这更容易理解!
import cx_Freeze
import sys
base = None
if sys.platform == 'win32':
base = "Win32GUI"
executables = [cx_Freeze.Executable("example.pyw", base=base)]
cx_Freeze.setup(
name = "SeaofBTC-Client",
options = {"build_exe": {"packages":["tkinter",],"icon":"example.ico"}},
version = "0.01",
description = "Sea of BTC trading application",
executables = executables
)