Re: [Pythonmac-SIG] Getting an Error When Running App built with Py2app

2011-06-09 Thread Christopher Barker
Mike wrote: Hi, I'm using the built in Python 2.6 that comes with OSX. Should I install Python from python.org? If so, which version? That depends on your goals. If you are happy with your app only running on 10.6 and above, then the built-in one should work. If you want your app to run o

Re: [Pythonmac-SIG] debugging bus error on launch [py2app]

2011-06-09 Thread Jeffrey O'Neill
On Tue, Jun 7, 2011 at 9:53 AM, Ronald Oussoren wrote: > > Another option to get more information, could you run: > > $ DYLD_PRINT_LIBRARIES=1 /dist/OpenSTV.app/Contents/MacOS/OpenSTV > > This will print the libraries that get loaded, and might provide insight in > what's going on. > > Also: what

Re: [Pythonmac-SIG] debugging bus error on launch [py2app]

2011-06-09 Thread Jeffrey O'Neill
I figured out what was causing my bus error. In my setup.py file, I have setup( ... version = v, ...) If v is a string or int then everything works fine. If v is a list or tuple then you get the bus error I reported. Clearly my fault, but would be nice to get a better error message

Re: [Pythonmac-SIG] debugging bus error on launch [py2app]

2011-06-09 Thread Ronald Oussoren
On Jun 9, 2011, at 19:02, Jeffrey O'Neill wrote: > I figured out what was causing my bus error. In my setup.py file, I have > > setup( > ... > version = v, > ...) > > If v is a string or int then everything works fine. If v is a list or tuple > then you get the bus error I re