FYI - just an update, I was eventually able to get a pyinstaller version of my Twisted/python web server running on Linux, and able to serve both HTTP and HTTPS. Mostly required explicitly importing modules that pyinstaller didn't automatically find in its analysis; secondly, running the unix 'dos2unix' utility on a number of modules, since pyinstaller doesn't handle Windows line endings properly; and finally manually unpacking a bunch of Python 'eggs'. Ken
On Wed, Jan 13, 2010 at 3:25 AM, Florian Höch <[email protected]> wrote: > Hi, > > I remember a similar issue some time ago, in the other case it turned out > python was compiled without --enable-shared, thus libpython.so was missing. > > Regards, > > Florian Höch > > Am 11.01.2010 23:10, schrieb Ken MacDonald: > >> Hi, >> >> Still trying to get pyinstaller to work, using a pyinstaller project >> that used to work. Now, when I do a Build of the project, I get an error >> stating: >> >> IOError: python library not found! >> >> Unfortunately, it does not tell me WHICH library is not found. Is there >> any way of telling? >> Ken >> >> >> -- >> 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]<pyinstaller%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/pyinstaller?hl=en. >> > > > > -- > 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]<pyinstaller%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/pyinstaller?hl=en. > > > > -- 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.
