Am 13.10.2011 14:26, schrieb RedBaron:
However on listing the contents of directory pointed out by "_MEIPASS2" environ variable at run time shows a lot of .so files and no ".py" file
This is correct, since files are packed into the executable. Please use Archiveviewer to look inside the executable and the contained archive (outPYZ1.pyz)
Anyway I think I've made a mistake: Collecting the plugins as datafiles does not work if they import modules not imported by the main program. Thus you'll need something like this (untestes):
... pyz = PYZ(a.pure) ... pugins_toc = TOC() for p in plugins: p = Analysis(p, ...) pyz.extend(p.pure) plugins.append(p) ... collect = COLLECT(...., plugins.scripts, plugins.zipfiles, plugins.data, ...) -- Schönen Gruß - Regards Hartmut Goebel Dipl.-Informatiker (univ.), CISSP, CSSLP Goebel Consult Spezialist für IT-Sicherheit in komplexen Umgebungen http://www.goebel-consult.de Monatliche Kolumne: http://www.cissp-gefluester.de/ Goebel Consult ist Mitglied bei http://www.7-it.de -- 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.
