This is one of the classic linux problems, that is really outside of pyinstaller's scope, and there is no easy solution that I know of, anyway.
You've built your distribution of your app on a newer version of linux, that has a newer version of glibc installed, and you're trying to run on an older version of linux that does not have such a late version of glibc. It just won't work; the ABI's are incompatible. The only solution that I know of (and use) is to purposefully build on a machine that has and older version of GLIBC installed. This way, you can run your app on older and newer machines. You can't go the other way. On Apr 26, 10:38 am, Sloan Lindsey <[email protected]> wrote: > Martin, > NEW ERROR! > using 1.5rc1 I get this error for the same hello world script. > [sloan@pc24 helloworld]$ ./helloworld > Error loading Python lib './libpython2.6.so.1.0': /lib64/libc.so.6: version > `GLIBC_2.7' not found (required by ./libcrypto.so.0.9.8) > -Sloan > > On Tue, Apr 26, 2011 at 4:23 PM, Martin Zibricky <[email protected]>wrote: > > > > > > > > > Sloan Lindsey píše v Út 26. 04. 2011 v 16:17 +0200: > > > I'm using pyinstaller1.4 > > > could you please try 1.5-rc1 or svn version? > > > -- > > 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. -- 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.
