Hi I have sucessfully built numerous pyside applications with pyinstaller. For images, the best method is to create qt resource files. There is a good explanation here:
http://stackoverflow.com/questions/11534293/pyinstaller-wont-load-the-pyqts-images-to-the-gui In the end, your application should have a file called something like images.qrc and another python file built by pyside-rcc.exe called images.py which you import where you need your images. Access your images using a relative path with a colon before the path. e.g: QtGui.QIcon(':/images/myImage.png') The only thing I would add is that the 'Tree' command the answer says is required in the .spec file is 100% not necessary. No changes required to the .spec file. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller. For more options, visit https://groups.google.com/d/optout.
