Thanks, that helped. As an experiment I edited get_python_library_path() in bindepend.py to return the path to my python lib. That much worked and pyinstaller compiled my app and produced a single file executable.
The executable fails when I try to run it but that's not a big surprise. It's another conflict between musl and glib libc. $ rx_web Error loading Python lib '/tmp/_MEIC1Yi0D/libpython2.7.so': /usr/lib/i386-linux-gnu/libc.so: invalid ELF header $ What's interesting is that I also tried cx_freeze as an experiment. It produces an executable and collection of libs in one directory that actually runs. I'm actually surprised that much worked. I'm looking into packing the files into a single executable now. This might be my final solution. On Sat, May 9, 2015 at 12:50 PM, Hartmut Goebel <[email protected]> wrote: > Am 09.05.2015 um 18:35 schrieb JohnMudd: > > Trying to compile my app. > > [...] > > File > "/usr/rx30/musl/Python-2.7.9.install/lib/python2.7/site-packages/PyInstaller/build.py", > line 727, in _check_python_library > raise IOError("Python library not found!") > > > Then you should debug PyInstaller,bindepend.get_python_library_path why it > does not find your python library. I'm sorry, but I'm afraid I can't help > you on this any further. > > > -- > Schönen Gruß > Hartmut Goebel > Dipl.-Informatiker (univ), CISSP, CSSLP > Information Security Management, Security Governance, Secure Software > Development > > Goebel Consult, Landshut > http://www.goebel-consult.de > > Blog: > http://www.goebel-consult.de/blog/offi-als-alternative-zum-db-navigator > Kolumne: http://www.cissp-gefluester.de/2010-07-passwoerter-lieben-lernen > > -- > You received this message because you are subscribed to a topic in the > Google Groups "PyInstaller" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/pyinstaller/KdcH19XUlt4/unsubscribe. > To unsubscribe from this group and all its topics, 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. > -- 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.
