I am trying to change the default python icon in my executable using pyinstaller. I'm trying this on Windows 10 and the GUI framework is pyqt5.
I have only managed to change the icon of the application (as seen in a file) but not the icons when you open the application (on the app's window).
These are the commands I used after a bit of online searching:
pyinstaller SSL_Configurator.py
pyinstaller --onefile -w --icon="favicon.ico" SSL_Configurator.py
pyinstaller --onefile -w --icon="favicon.ico" --paths=<C:\Users\Haylee\Desktop\python>\Lib\site-packages SSL_Configurator.py
What else should I include in order to get the icon to be displayed on the window as well?
thanks