Paul Whipp píše v Čt 23. 02. 2012 v 12:05 +1000: > > Can someone point me in the right direction to work out how I can get > the generated executable to run on these test servers?
You could look at our faq: http://www.pyinstaller.org/wiki/FAQ You need to build your app on the oldest distribution you want to support (with oldest libc - libc is backward compatible but not forward). I your case I think it means to build your app on centos 5. If you depend on newer python version than the one on centos 5 then the challenge is to build python yourself on centos 5. Or another option is to look at http://pypi.python.org/pypi/myppy. With python from myppy you should be able to create executables on your ubuntu 10 which could work even on centos5. -- 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.
