Hi list,
I'm trying to build an onedir package for a PyQt4 based app on Ubuntu
11.04 amd64.
The package seems to build correctly but when I try to launch the
program I get the following error:

"Python library not found."

If my understanding is correct the launcher looks for
libpython2.7.so.1.0 (in my case) in the package dir an then fails
because libpython is actually missing.

This kind of error seems to me quite strange and I would like to ask if
some other user has experienced the same issue.


Any ind of help is welcome



P.S. for developers: please append a '\n' to the message string in
launch.c:531

http://www.pyinstaller.org/browser/trunk/source/common/launch.c@1468#L531

--- pyinstaller/source/common/launch.c  (revisione 1513)
+++ pyinstaller/source/common/launch.c  (copia locale)
@@ -528,7 +528,7 @@
 #else
     if (checkFile(dllpath, "%slibpython%01d.%01d.so.1.0",
status->temppath, pyvers / 10, pyvers % 10) != 0) {
         if (checkFile(dllpath, "%slibpython%01d.%01d.so.1.0",
status->homepath, pyvers / 10, pyvers % 10) != 0) {
-            FATALERROR("Python library not found.");
+            FATALERROR("Python library not found.\n");
             return -1;
         }
     }


best regards

-- 
Antonio Valentino

-- 
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.

Reply via email to