Hello all, I am having a few problems I am hoping others have encountered and 
may be able to help me with. I am using pyinstaller v1.4 with python v2.6.5. I 
am attempting to create a standard binary in linux, which succeeds, but when I 
run the binary I get this error:

Error loading Python lib './libpython2.6.so.1.0': ./libpython2.6.so.1.0: cannot 
open shared object file: No such file or directory

I don't think I should have to do this, but in attempt to see how much further 
I could get, I copied that shared object into the same directory. The new error 
message is:

mod is NULL - structTraceback (most recent call last):
  File "/usr/local/lib/python2.6/struct.py", line 1, in <module>
    from _struct import *
ImportError: No module named _struct
mod is NULL - archiveTraceback (most recent call last):
  File "/home/jeff/python/modules/pyinstaller-1.4/archive.py", line 42, in 
<module>
    import struct
ImportError: No module named struct
Traceback (most recent call last):
  File "<string>", line 25, in <module>
ImportError: No module named archive

Running strace I see lots of stuff like this:


open("/usr/local/lib/cmov/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file 
or directory)
stat64("/usr/local/lib/cmov", 0xbf9eee08) = -1 ENOENT (No such file or 
directory)
open("/usr/local/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
stat64("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib/tls/i686/sse2/cmov/libpthread.so.0", O_RDONLY) = -1 ENOENT (No 
such file or directory)
stat64("/usr/lib/tls/i686/sse2/cmov", 0xbf9eee08) = -1 ENOENT (No such file or 
directory)
open("/usr/lib/tls/i686/sse2/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such 
file or directory)

And this is where I am now stuck. Any insight on how to fix this problem would 
be greatly appreciated!

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