I have been all over Google, Reddit, StackOverflow, PyInstaller docs, I can't figure this out.
I'm trying to set my icon for my application, but it will not work. The icon is applied to the main exe, however, the icon does not show in the taskbar when it is open for Windows.
The icon is being included. I have set the value icon in EXE directly to the icon path. I have used Resource Hacker, I have used RCEDIT, which by the way, kills my application entirely. I, for the life of me, CANNOT get the icon of the application to show correctly.
I have tried Windows 10 and Windows 7.
Even when I run Pyinstaller without -F, it still won't load the icon. I'm 100% certain my file is an .ico file, and includes multiple acceptable sizes, Resource Hacker showed all acceptable sizes for the .ico.
Here is the powershell command I'm using:
pyinstaller -F -i C:\aNote\theme\anoteicon.ico --clean anotemain.spec
Here is my .spec
# -*- mode: python -*-
block_cipher = None
a = Analysis(['anotemain.py'],
pathex=['C:\\aNote'],
binaries=[],
datas=[('c:\\aNote\\theme\\anoteicon.png','theme'),
('c:\\aNote\\theme\\kabook.png','theme'),
('c:\\aNote\\theme\\Python.svg.png','theme'),
('c:\\aNote\\theme\\anoteicon.ico','.'),
('c:\\aNote\\anoteui.py','.'),
('c:\\aNote\\version.txt','.')],
hiddenimports=["PyQt5.sip", "QtGui", "QtWidgets", "pyperclip", "webbrowser", "csv"],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='aNote',
debug=False,
strip=False,
upx=False,
clean=True,
runtime_tmpdir=None,
console=False,
icon='c:\\aNote\\theme\\anoteicon.ico',
version='version.txt')