Pyinstaller setting icon

帅比萌擦擦* 提交于 2019-11-28 16:53:23

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

Alan L

I think this might have something to do with caching (possibly in Windows Explorer). I was having the old PyInstaller icon show up in a few places too, but when I copied the exe somewhere else, all the old icons were gone.

Below command can set the ICON on executable file. Remember the ".ico" file should present in the place of path given in "Path_of_.ico_file".

pyinstaller.exe --onefile --windowed --icon="Path_of_.ico_file" app.py

For ex: app.py file present in current directory and 'app.ico' is present inside the 'Images' folder which is created in current directory. So the command should given below. The final executable file will be generate inside the 'dist' folder.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!