I have developed a pygtk application and i need to release it to customers. I am using python 2.7, pygtk 2.2 in ubuntu.
My question is how can I bundle the required packages(python, pygtk, gobject) together with my application, so that even if these packages are not installed in client machine I can run my application.
I tried with pyinstaller but, the executable depends on the glibc i.e executable created with higher glibc version will not work with the machine which has lower glibc version.
So is there any way to create a release directory which includes all the packages required so that I can run my application in any system without installing the packages.
Thanks in advance,