Hello, i am using pyinstaller in linux, i have compiled a PyQt4 program but if i try to use in a machine without QT4 installed i get this error:
Traceback (most recent call last): File "<string>", line 5, in <module> File "/home/skuda/pyinstaller/iu.py", line 314, in importHook File "/home/skuda/pyinstaller/iu.py", line 375, in doimport File "/home/skuda/pyinstaller/iu.py", line 215, in getmod File "/home/skuda/pyinstaller/archive.py", line 409, in getmod File "/home/skuda/pyinstaller/iu.py", line 77, in getmod ImportError: libQtCore.so.4: cannot open shared object file: No such file or directory i have tried to do a manual copy to the dist directory and tried to add it with BINARY in the spec but although the file it is here, the program doesnt find it. In windows qt lib it is automatically included in the dist directory. later i have manually copied the libs to /usr/lib (to be in path) and i get this error: Traceback (most recent call last): File "<string>", line 5, in <module> File "/home/skuda/pyinstaller/iu.py", line 314, in importHook File "/home/skuda/pyinstaller/iu.py", line 375, in doimport File "/home/skuda/pyinstaller/iu.py", line 215, in getmod File "/home/skuda/pyinstaller/archive.py", line 409, in getmod File "/home/skuda/pyinstaller/iu.py", line 77, in getmod ImportError: /lib/tls/i686/cmov/libc.so.6: version `GLIBC_2.4' not found (required by /usr/lib/libQtCore.so.4) can i include libc in the compilation too? Thanks in advance. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
