Pyinstaller setting icons don't change

前端 未结 6 2122
栀梦
栀梦 2020-12-04 11:14

When I use the command:

pyinstaller.exe --icon=test.ico -F --noconsole test.py

All icons do not change to test.ico. Some icons remain as the

6条回答
  •  [愿得一人]
    2020-12-04 11:47

    I know this is old and whatnot (and not exactly sure if it's a question), but after searching, I had success with this command for --onefile:

    pyinstaller.exe --onefile --windowed --icon=app.ico app.py
    

    Google led me to this page while I was searching for an answer on how to set an icon for my .exe, so maybe it will help someone else.

    The information here was found at this site: https://mborgerson.com/creating-an-executable-from-a-python-script

提交回复
热议问题