[Pythonmac-SIG] py2app problem with wxpython on Apple python 2.7 Lion : can’t find __core__.so etc

2011-10-13 Thread schneo
Hello all, I’m on a fresh install of OS X Lion with Apple version of Python 2.7 (64bits) + installed wxPython2.9-osx-cocoa-py2.7 + (py2app with easy_install as explained here : http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html ) The bundle .app is well created but when I launch it, =>

[Pythonmac-SIG] py2app don't find Appkit or Quartz...

2011-11-21 Thread schneo
Hello list!, Context: OSX Lion, native Apple Python and PyObjC (all 64 bits). The setup.py and build phase from py2app seems to work great (no complaints) until i'm launching the .app: Console: from AppKit import NSBeep ImportError: No module named AppKit from Quartz import * ImportError: No mod

Re: [Pythonmac-SIG] py2app don't find Appkit or Quartz...

2011-11-22 Thread schneo
LES = [] OPTIONS = {'argv_emulation': True} setup( app=APP, data_files=DATA_FILES, options={'py2app': OPTIONS}, setup_requires=['py2app'], ) Francois On Mon, Nov 21, 2011 at 6:37 PM, Sean Robinson < [email protected]> wrote: