distributing independent python app to other machines
I created independent python app using cxfreeze under linux and can run it other machines without python and other dependencies.
But while doing it for mac OS X, in other machines the app searches for the following python installed location which actually present in the machine where it is frozen.
"/Library/Frameworks/Python.framework/Vers开发者_StackOverflowions/3.1/Python"
How to execute this app without this dependency?
Try py2app for Mac OS X. (And py2exe for Windows.)
精彩评论