I am trying to build an app bundle with py2app on Mac OS X 10.6. The app uses some libraries which are only compiled for 32-bit, so when the app is run there is an ImportError "no appropriate 64-bit architecture". How can I tell py2app to force the app to run in 32-bit mode?
|
feedback
|
|
One way is to use a 32-bit-only Python, such as the 32-bit-only versions downloadable from python.org, with py2app. Another is to set the | |||
|
feedback
|
|
If you want to run only in 32 bit mode, then you don't need the 64 bit architecture. So you can just strip out all the non-i386 architectures from your resulting application bundle using the Example:
Your application bundle will be smaller and will run as a 32 bit application for sure, even on 64 bit Intel systems. Manual: http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/ditto.1.html Or just run in a terminal: | |||
|
feedback
|
|
After lots of pain and trying to get wx working I managed to get it to work using this method, I have also included the versions I installed
Mine looks a bit like this
I installed python2.7 with
This installed version 0.6.4 of py2applet | |||
|
feedback
|
|
You need to force python to run in 32-bit mode. | |||
feedback
|