Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Terry Jones
As a followup to my ongoing attempt to distribute a hello world app, I re-installed MacPython and py2app and sent the result (now sitting in http://jones.tc/simple.tar.bz2) to a friend. He ran the app and got no result (no line printed in the console). The same occurs with a more complex app. Anyw

Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Robert Kern
Chris Barker wrote: > Terry Jones wrote: > >>Ok, thanks for looking. I've been putting off moving to 10.4 because I will >>need to rebuild many things. Now it looks like I have a good reason. > > Well, perhaps, but as far as I can tell, there is still some open-source > software that doesn't work

Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Terry Jones
| In any case, I would get rid of your python2.4 an install Bob's "Official | Unofficial" one. That may take care of your issue at the moment, and it's | easy to do. Thanks. I've already done it, and re-installed py2app. The py2app build now no longer contains the mysterious Contents/Frameworks/li

Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Chris Barker
Terry Jones wrote: > Ok, thanks for looking. I've been putting off moving to 10.4 because I will > need to rebuild many things. Now it looks like I have a good reason. Well, perhaps, but as far as I can tell, there is still some open-source software that doesn't work so well on 10.4 (gcc 4.0 issue

Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Terry Jones
| There's something wrong with the way it's linked together. The | Python framework doesn't have its headers rewritten, and I'm not sure | what the heck libbz2 is doing in there. This isn't the official 2.4 | distro, is it? I've never seen it do this before. No, it's not. When I started p

Re: [Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Bob Ippolito
On Oct 14, 2005, at 12:26 PM, Terry Jones wrote: > Hi again. > > While attempting to solve my Qt problem, I made a dead-simple Hello > World > python script (two lines, #!... and print) and turned it into an > app with > py2app. > > When I run it (open on the command line, double click in the

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Terry Jones
Hi Dethe | The lack of a response is probably due to the general unfamiliarity with QT | on this list. Mostly Cocoa gets advocated for Mac use, although some folks | are using wx, Tkinter, or PyGame. Beyond that things start to get into | less travelled territory pretty quick, although there are

[Pythonmac-SIG] Non-Qt basic question

2005-10-14 Thread Terry Jones
Hi again. While attempting to solve my Qt problem, I made a dead-simple Hello World python script (two lines, #!... and print) and turned it into an app with py2app. When I run it (open on the command line, double click in the finder, single click on the icon in the dock), I get 'Hello World' pri

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Terry Jones
| > I went back to the INSTALL file for Mac Qt, and noticed that they | > recommend | > | > ln -sf $QTDIR/lib/libqt.3.dylib /usr/lib | > ln -sf $QTDIR/lib/libqui.1.dylib /usr/lib | | That's bad! Don't do that, remove those links. /usr/local/lib would | be a lot better. That will not

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Dethe Elza
Hi Terry, The lack of a response is probably due to the general unfamiliarity with QT on this list. Mostly Cocoa gets advocated for Mac use, although some folks are using wx, Tkinter, or PyGame. Beyond that things start to get into less travelled territory pretty quick, although there ar

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Bob Ippolito
On Oct 14, 2005, at 11:03 AM, Terry Jones wrote: > Thanks a lot for your answer and pointer. > > | Last I checked, Qt wasn't ported correctly to OS X; it requires some > | extra crap to be set. As part of the Qt directions you're required > | to set DYLD_LIBRARY_PATH so that the linker and applic

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Terry Jones
Hi Bob Thanks a lot for your answer and pointer. | Last I checked, Qt wasn't ported correctly to OS X; it requires some | extra crap to be set. As part of the Qt directions you're required | to set DYLD_LIBRARY_PATH so that the linker and applications can find | the Qt libraries. Make sur

Re: [Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Bob Ippolito
On Oct 14, 2005, at 4:03 AM, Terry Jones wrote: > I sent mail about a py2app problem I ran into on Sept 28. While I know > no-one has a right to expect answers or help, I was a little > surprised that > there were no suggestions or pointers at all about what might be going > wrong. Perhaps this

[Pythonmac-SIG] Still hitting ImportError when trying to open app made with py2app

2005-10-14 Thread Terry Jones
I sent mail about a py2app problem I ran into on Sept 28. While I know no-one has a right to expect answers or help, I was a little surprised that there were no suggestions or pointers at all about what might be going wrong. Perhaps this indicates that I (or my python config at least) have some kin

Re: [Pythonmac-SIG] problems using py2app

2005-10-14 Thread Richard Taylor
Bob Ippolito wrote: > > On Oct 14, 2005, at 2:23 AM, Richard Taylor wrote: > >> Bob Ippolito wrote: >> >> >>> >>> On Oct 12, 2005, at 6:07 AM, Richard Taylor wrote: >>> >>> I am trying to use py2app (http://undefined.org/python/) to package a gnome-python application called gramps (http

Re: [Pythonmac-SIG] problems using py2app

2005-10-14 Thread Bob Ippolito
On Oct 14, 2005, at 2:23 AM, Richard Taylor wrote: > Bob Ippolito wrote: > > >> >> On Oct 12, 2005, at 6:07 AM, Richard Taylor wrote: >> >> >>> I am trying to use py2app (http://undefined.org/python/) to >>> package a >>> gnome-python application called gramps (http://www.gramps- >>> project.

Re: [Pythonmac-SIG] problems using py2app

2005-10-14 Thread Richard Taylor
Bob Ippolito wrote: > > On Oct 12, 2005, at 6:07 AM, Richard Taylor wrote: > >> I am trying to use py2app (http://undefined.org/python/) to package a >> gnome-python application called gramps (http://www.gramps- >> project.org) for >> MAC OS X. >> >> py2app does not have a mailing list so I start

Re: [Pythonmac-SIG] problems using py2app

2005-10-14 Thread Bob Ippolito
On Oct 12, 2005, at 6:07 AM, Richard Taylor wrote: > I am trying to use py2app (http://undefined.org/python/) to package a > gnome-python application called gramps (http://www.gramps- > project.org) for > MAC OS X. > > py2app does not have a mailing list so I started by posting to > comp.lang.py