I want to create a GUI application which should work on Windows and Mac. For this I've choose Python.

The problem is on Mac OS X.

There are 2 tools to generate an ".app" for Mac: py2app and pyinstaller.

  1. py2app is pretty good, but it adds the source code in the package. I don't want to share the code with the final users.
  2. Pyinstaller generates UNIX executable, so how to run it on Mac? I created a bundles with this executable, but the resulted ".app" is not working.

The questions are:

  1. How to configure py2app to include the source code in the executable, so the final users will not have access to my program?
  2. How to convert UNIX executable to Mac ".app" ?
  3. Is there a way to compile Python code with GCC ?
  4. In Windows it's easy, I created an "exe" file from Python code and it works. Is it possible to create a single file "app" for Mac ?

Thank you very much.

Christian

P.S. I use two computers (for Windows and for Mac), Python 2.7, wxPython, py2exe, py2app, pyinstaller... so don't worry.

Also, I check these sites:

  • svn.pythonmac.org/py2app/py2app/trunk/doc/index.html
  • pyinstaller.org/export/latest/tags/1.5.1/doc/Manual.html?format=raw
  • pyinstaller.org/wiki/MacOsCompatibility
  • stackoverflow.com/questions/2933/an-executable-python-app

Sorry, I removed "http://www..." because of this message: "We're sorry, but as a spam prevention mechanism, new users can only post a maximum of two hyperlinks. Earn more than 10 reputation to post more hyperlinks."

link|improve this question
feedback

1 Answer

A motivated person could probably reconstruct usable source code from the Python bytecode in your app, so you might reconsider your opposition to py2app. If you don't trust your final users, why are you doing business with them?

link|improve this answer
honestly, talking about bussiness maybe your question is a bit naive... – joaquin Dec 18 '11 at 8:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.