我正在使用 pyinstaller 2.0 和 python 2.7 从我的 pyqt 应用程序构建一个 onedir exe。一切正常... exe 运行并在程序栏中显示指定的图标,但为 exe 显示的图标仍然是 pyinstaller 图标。
是否可以使用 pyinstaller 用我自己的图标构建 exe?
我的构建命令是:
c:\python27\python.exe c:\pyinstaller\pyinstaller.py --noconsole --icon="myprog.ico" --out="C:\out" "C:\out\myprog.py"
我已经尝试修改规范文件的 exe 部分以包含“icon='myicon.ico'”,但这没有用。