In my python application I have buttons with icons (png images, see bellow)
The up and down arrows are buttons. Now i'm trying to make exe from my python script using pyinstaller, as follow
pyinstaller myScript.py
But in the generated exe the icon images for buttons are missing
It seems that pyinstaller should be called with some attributes.
How can I include png icons images of buttons in exe file using pyinstaller?