Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you create an osx application/dmg from a python package?

Tags:

I want to create a mac osx application from python package and then put it in a disk image.

Because I load some resources out of the package, the package should not reside in a zip file.

The resulting disk image should display the background picture to "drag here -> applications" for installation.

like image 620
Florian Bösch Avatar asked Sep 22 '08 18:09

Florian Bösch


People also ask

Can you make a Mac app with Python?

py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts. py2app is similar in purpose and design to py2exe for Windows. NOTE: py2app must be used on macOS to build applications, it cannot create Mac applications on other platforms.

How do I make a Python file executable Mac?

Add #!/usr/local/bin/python in the beginning of the code. Then run chmod +x myscript.py in terminal. After that change the application open with to Terminal. It worked for me.


1 Answers

I don't know the correct way to do it, but this manual method is the approach I've used for simple scripts which seems to have preformed suitably.

I'll assume that whatever directory I'm in, the Python files for my program are in the relative src/ directory, and that the file I want to execute (which has the proper shebang and execute permissions) is named main.py.

 $ mkdir -p MyApplication.app/Contents/MacOS $ mv src/* MyApplication.app/Contents/MacOS $ cd MyApplication.app/Contents/MacOS $ mv main.py MyApplication 

At this point we have an application bundle which, as far as I know, should work on any Mac OS system with Python installed (which I think it has by default). It doesn't have an icon or anything, that requires adding some more metadata to the package which is unnecessary for my purposes and I'm not familiar with.

To create the drag-and-drop installer is quite simple. Use Disk Utility to create a New Disk Image of approximately the size you require to store your application. Open it up, copy your application and an alias of /Applications to the drive, then use View Options to position them as you want.

The drag-and-drop message is just a background of the disk image, which you can also specify in View Options. I haven't done it before, but I'd assume that after you whip up an image in your editor of choice you could copy it over, set it as the background and then use chflags hidden to prevent it from cluttering up your nice window.

I know these aren't the clearest, simplest or most detailed instructions out there, but I hope somebody may find them useful.

like image 104
Jeremy Avatar answered Sep 29 '22 12:09

Jeremy