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

2011-06-14 Thread Mike
- Original Message - From: "Ronald Oussoren" To: "Mike" Cc: "Pythonmac-sig sig" Sent: Tuesday, June 14, 2011 5:08 AM Subject: Re: [Pythonmac-SIG] Getting an Error When Running App built with Py2app On 14 Jun, 2011, at 7:37, Ronald Oussoren wrote

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

2011-06-14 Thread Ronald Oussoren
On 14 Jun, 2011, at 7:37, Ronald Oussoren wrote: > > On 12 Jun, 2011, at 21:02, Mike wrote: > >> Hi, >> >> Tried installing Python 2.7 32 bit and WXPython. I now get import error: no >> module named appkit >> >> I assume this means I would have to install XCode, then PyObjC for the py2.7 >> b

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

2011-06-13 Thread Ronald Oussoren
y2app". This should install py2app 0.6.3. Ronald > > Mike > - Original Message - From: "Christopher Barker" > > To: "Mike" ; "Pythonmac-sig" > Sent: Thursday, June 09, 2011 1:28 PM > Subject: Re: [Pythonmac-SIG] Getting an Error

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

2011-06-13 Thread Ronald Oussoren
On 14 Jun, 2011, at 4:24, Mike wrote: > Hi, > > I'm trying to get Python 2.7 working. I was getting an error no module named > appkit, so I assume i need to install pyobjc. I get the following error when > I run easy_install pyobjc, as well as when I run setup.py in the > trunk/pyobjc/pyobjc

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

2011-06-13 Thread Mike
n for Requirement.parse('pyobjc-framework-ServiceManagement==2.4a0') Anyone have a solution for this? Mike- Original Message - From: "Christopher Barker" To: "Mike" Cc: Sent: Monday, June 13, 2011 1:07 PM Subject: Re: [Pythonmac-SIG] Getting an Error When Running Ap

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

2011-06-13 Thread Christopher Barker
Mike wrote: I also just tried installing python2.6.6 from python.org, but when I run python2.6, it still claims i'm running python 2.6.1. Any idea how to fix this? The installer _should_ have updated your PATH so that the newly installed version would run when you typed "python", but dependin

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

2011-06-12 Thread Mike
sday, June 09, 2011 1:28 PM Subject: Re: [Pythonmac-SIG] Getting an Error When Running App built with Py2app 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 happ

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

2011-06-12 Thread Mike
else to try. Mike - Original Message - From: "Christopher Barker" To: "Mike" ; "Pythonmac-sig" Sent: Thursday, June 09, 2011 1:28 PM Subject: Re: [Pythonmac-SIG] Getting an Error When Running App built with Py2app Mike wrote: Hi, I'm using the

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

2011-06-09 Thread Christopher Barker
s way both the Apple and Python.org installs can use it. It uses some "*.pth" trickery to accomplish that -- that may be what's confusing py2app. -Chris Mike - Original Message - From: "Chris Barker" To: "Mike" ; Sent: Wednesday, June 08, 2011 1:1

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

2011-06-08 Thread Ronald Oussoren
On 8 Jun, 2011, at 15:15, Christopher Barker wrote: > Ronald Oussoren wrote: That should be "is really *NOT* expected to work right...". :) > >> And that's wrong. Py2app should work just fine with Apple's python, >> and then creates a semi-standalone app bundle that doesn't include >> Pytho

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

2011-06-08 Thread Christopher Barker
Ronald Oussoren wrote: That should be "is really *NOT* expected to work right...". :) And that's wrong. Py2app should work just fine with Apple's python, and then creates a semi-standalone app bundle that doesn't include Python itself. The advantage is a smaller application bundle, the disadva

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

2011-06-08 Thread Ronald Oussoren
On 7 Jun, 2011, at 19:38, Mike wrote: > Hi, > > I built my python program using Py2app, using the default setup.py script. > I'm running Mac OSX Snow Leopard 64 bit. My project uses WX. Initially, I was > getting an error import error: no module named wx when I ran the app, so I > went and do

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

2011-06-08 Thread Ronald Oussoren
On 8 Jun, 2011, at 8:29, Christopher Barker wrote: > Chris, > > I think your note didn't get posted to the list (you have to "reply all"), so > here it is: > > Chris Weisiger wrote: >> On Tue, Jun 7, 2011 at 10:12 PM, Chris Barker > which python are you using? Py2app is really expected to work

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

2011-06-08 Thread Christopher Barker
Chris, I think your note didn't get posted to the list (you have to "reply all"), so here it is: Chris Weisiger wrote: On Tue, Jun 7, 2011 at 10:12 PM, Chris Barker which python are you using? Py2app is really expected to work right with Apple's built-in python (it can't include pytho

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

2011-06-07 Thread Chris Barker
On 6/7/11 7:38 PM, Mike wrote: Hi, I built my python program using Py2app, using the default setup.py script. I'm running Mac OSX Snow Leopard 64 bit. which python are you using? Py2app is really expected to work right with Apple's built-in python (it can't include python itself) ImportErro

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

2011-06-07 Thread Mike
Hi, I built my python program using Py2app, using the default setup.py script. I'm running Mac OSX Snow Leopard 64 bit. My project uses WX. Initially, I was getting an error import error: no module named wx when I ran the app, so I went and downloaded and installed WXPython from wxpython.org. N