标签: python icons pyinstaller
我只需要使用pyinstaller构建可执行文件,并带有默认的Windows .exe图标。 或在编译后删除/设置默认Windows图标的方法。
谢谢。
答案 0 :(得分:0)
我认为您不能只使用Windows默认的.exe图标,而可以设置自己的图标。 使用pyinstaller --onefile --icon=myicon.ico yourapp.py作为命令,并在该目录中包含myicon.ico或指定哪个目录。
pyinstaller --onefile --icon=myicon.ico yourapp.py
myicon.ico