On dom, 2009-03-29 at 14:29 -0700, snafu wrote: > When doing a layout with the Qt Designer the filetype "ui" is used to > save the content. Is there a way to let a PyInstaller onefile include > those ui-files?
Not specifically: .ui files are data files, and PyInstaller is about packaging your program, not your data. An easy solution is to use pyuic4 to compile .ui files into Python code. Otherwise, you may want to read PyInstaller's manual about how to put arbitrary data files within the generated executable, but it's not something that it's streamlined to do. -- Giovanni Bajo Develer S.r.l. http://www.develer.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
