Py2app will create the app for python2. But for python3? Has anyone succeeded in creating an app for python3 script?
Any clue would be helpful for my script in creating that.
Py2app will create the app for python2. But for python3? Has anyone succeeded in creating an app for python3 script?
Any clue would be helpful for my script in creating that.
Unlike these two tools, cx_Freeze is cross platform and should work on any platform that Python itself works on. It requires Python 2.3 or higher since it makes use of the zip import facility which was introduced in that version.
I have just written a blog entry about app builders a few days ago: http://publicfields.blogspot.com/2010/08/mac-os-application-builders-for-python.html
My personal opinion is the same as katriealex's: cx_freeze is the best solution at the moment. Although I did not manage to find a way of bundling binaries cx_freeze produces into a single app. I'd be happy to learn the way to do this and update the post accordingly )