Re: [Pythonmac-SIG] py2app error

2018-02-21 Thread Barry
> On 19 Feb 2018, at 22:32, Kevin Walzer wrote: > > A Tkinter app I am building on 10.13 with py2app 0.14 is crashing with this > error: > > Traceback (most recent call last): > File > "/Users/kevin/Programming/quickwho/dist/QuickWho.app/Contents/Resources/__boot__.py", > line 98, in >

[Pythonmac-SIG] py2app error

2018-02-19 Thread Kevin Walzer
A Tkinter app I am building on 10.13 with py2app 0.14 is crashing with this error: Traceback (most recent call last):   File "/Users/kevin/Programming/quickwho/dist/QuickWho.app/Contents/Resources/__boot__.py", line 98, in     _run()   File "/Users/kevin/Programming/quickwho/dist/QuickWho.a

Re: [Pythonmac-SIG] py2app error when launching built app

2013-06-25 Thread Alex Honeywell
Framework build. I believe it had something to do with a bad environment (I was using virtualenv when I was getting this error and there were a few pathing conflicts). I deleted everything and made a more isolated Python environment with homebrew in /usr/local and it works fine now. On Mon, Dec 2

Re: [Pythonmac-SIG] py2app error when launching built app

2012-12-24 Thread Ronald Oussoren
On 11 Nov, 2012, at 23:26, Alex Honeywell wrote: > I've got my app successfully bundled and built, but when I try to launch it > from Finder I get "snakewatch: Error" and nothing else except "exited with > error: 255" in Console. > > When I run the binary from Terminal instead, I get > > Tra

[Pythonmac-SIG] py2app error when launching built app

2012-12-21 Thread Alex Honeywell
I've got my app successfully bundled and built, but when I try to launch it from Finder I get "snakewatch: Error" and nothing else except "exited with error: 255" in Console. When I run the binary from Terminal instead, I get Traceback (most recent call last): File "/Volumes/Data/Development/sn

Re: [Pythonmac-SIG] Py2app error

2012-08-03 Thread Chris Barker
On Thu, Aug 2, 2012 at 8:32 PM, Ned Deily wrote: >> These are what they seem to be -- though I think you got tripped up by >> "for Mac OS X 10.3 through 10.6" -- actually, that should be "10.3 + >> " -- 10.7 didn't exist when that was built. > > Actually, "10.3 through 10.6" is intentional. If

Re: [Pythonmac-SIG] Py2app error

2012-08-02 Thread Ned Deily
In article , Chris Barker wrote: [...] > Anyway, on the pyton,org site, there are: > > Python 3.2.3 Mac OS X 64-bit/32-bit x86-64/i386 Installer (for Mac OS > X 10.6 and 10.7) > > and > > Python 3.2.3 Mac OS X 32-bit i386/PPC Installer (for Mac OS X 10.3 through > 10.6) > > These are what t

Re: [Pythonmac-SIG] Py2app error

2012-08-02 Thread Chris Barker
On Wed, Aug 1, 2012 at 10:39 PM, Mark Livingstone wrote: > OK, taking Chris' advice, I installed on a Snow Leopard machine: now that you've named, me, I feel compelled to contiue to help.. ;-) > cheyenne:dist marklivingstone$ ls ~/Downloads/ > About Downloads.lpdf > numpy-1.6.2-py2.7-python.org

Re: [Pythonmac-SIG] Py2app error

2012-08-02 Thread Ronald Oussoren
On 2 Aug, 2012, at 7:39, Mark Livingstone wrote: > Hi Guys, > > OK, taking Chris' advice, I installed on a Snow Leopard machine: > > cheyenne:dist marklivingstone$ ls ~/Downloads/ > About Downloads.lpdf > numpy-1.6.2-py2.7-python.org-macosx10.3.dmg > wxMac-2.8.12.tar > matplotlib-1.1.0-py2.7-p

[Pythonmac-SIG] Py2app error

2012-08-01 Thread Mark Livingstone
Hi Guys, OK, taking Chris' advice, I installed on a Snow Leopard machine: cheyenne:dist marklivingstone$ ls ~/Downloads/ About Downloads.lpdf numpy-1.6.2-py2.7-python.org-macosx10.3.dmg wxMac-2.8.12.tar matplotlib-1.1.0-py2.7-python.org-macosx10.3.dmg python-2.7.3-macosx10.6.dmg wxPython2.8-osx-d

Re: [Pythonmac-SIG] Py2app error

2012-07-18 Thread Ronald Oussoren
On 18 Jul, 2012, at 4:48, Mark Livingstone wrote: > Hi Ronald, > > I Played a but further… > > With a bit of terminal foo, I changed to the Apple python. I blew away > DIST & Build and tried again. What I found is that because the EPD > directories were still at the beginning of my path, it sti

Re: [Pythonmac-SIG] Py2app error

2012-07-17 Thread Mark Livingstone
Hi Ronald, I Played a but further… With a bit of terminal foo, I changed to the Apple python. I blew away DIST & Build and tried again. What I found is that because the EPD directories were still at the beginning of my path, it still tried to access that Makefile instead of looking for the Apple

Re: [Pythonmac-SIG] Py2app error

2012-07-17 Thread Mark Livingstone
Hi Chris, In the latest couple of releases, they have brought out a cut down EPD-Free which gets round that issue. It installs their python and Numpy, Scipy, IPython, matplotlib, traits & chaco so you end up getting wx / qt as well. Cheers, MArkL On 18 July 2012 03:26, Chris Barker wrote: > On

Re: [Pythonmac-SIG] Py2app error

2012-07-17 Thread Chris Barker
On Mon, Jul 16, 2012 at 10:49 PM, Ronald Oussoren wrote > I guess I'll have to download EPD to test this, but it looks like EPD has a > Python.framework where the framework version is different from the Python > version, and parts of py2app assume they are the same (which it why copying > pyco

Re: [Pythonmac-SIG] Py2app error

2012-07-16 Thread Ronald Oussoren
On 17 Jul, 2012, at 2:18, Mark Livingstone wrote: > Hello, > > Using both EPD 7.3 academic and free, I have tried to use py2app to > make an installer. This is the first time I have tried to do this. I > will ask on their mailing list as well. I guess I'll have to download EPD to test this, but

[Pythonmac-SIG] Py2app error

2012-07-16 Thread Mark Livingstone
Hello, Using both EPD 7.3 academic and free, I have tried to use py2app to make an installer. This is the first time I have tried to do this. I will ask on their mailing list as well. My setup.py script looks like this: import wx import sys # Application Information APP = "salstat.py" NAME = '

Re: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables

2011-10-18 Thread Ronald Oussoren
On 18 Oct, 2011, at 1:56, David Cortesi wrote: > Thank you, that sounds good. I have downloaded it, and now have the > folder py2app, but the relationship between that and setup.py is not > clear to me. I was blindly following the instructions in the py2app > doc, e.g. "sudo easy_install -U py2ap

Re: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables

2011-10-17 Thread David Cortesi
Thank you, that sounds good. I have downloaded it, and now have the folder py2app, but the relationship between that and setup.py is not clear to me. I was blindly following the instructions in the py2app doc, e.g. "sudo easy_install -U py2app" etc, but I can't find where that actually stashed py2a

Re: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables

2011-10-17 Thread Sean Robinson
On 10/17/2011 02:15 PM, David Cortesi wrote: This seems to be a rather FAsked question, based on googling that error string. Not FAnswered, however, altho it is probably relevant that on this list in August, Ronald Oussoren wrote, "The py2app repository contains a version of the argv emulator tha

[Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables

2011-10-17 Thread David Cortesi
This seems to be a rather FAsked question, based on googling that error string. Not FAnswered, however, altho it is probably relevant that on this list in August, Ronald Oussoren wrote, "The py2app repository contains a version of the argv emulator that works in 64-bit mode. I have to rebuild the e

Re: [Pythonmac-SIG] py2app error

2010-08-03 Thread Christopher Barker
Ronald Oussoren wrote: It would be better to post ctypes issues on bugs.python.org, that way the issue won't get lost and all python contributers can see the issue and work on it. Agreed, though I think the case I'm thinking of is more an issue with the package than with ctypes itself -- cty

Re: [Pythonmac-SIG] py2app error

2010-08-03 Thread Ronald Oussoren
On 2 Aug, 2010, at 3:27, Christopher Barker wrote: > Ronald Oussoren wrote: >>> This is a problem in general with all ctypes uses. In fact, ctypes >>> reminds me a bit of py2app in the sense that it has some built-in >>> algorithms for searching for dynamic libs, and that these fail fairly often.

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Christopher Barker
Ronald Oussoren wrote: This is a problem in general with all ctypes uses. In fact, ctypes reminds me a bit of py2app in the sense that it has some built-in algorithms for searching for dynamic libs, and that these fail fairly often. Please file bugs for that, I'm pretty sure that ctypes is supp

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Nathan Lemoine
I'm using the most recent 1.1.4 version of pyglet, which I installed from the binary and I'm using the 2.5.1 version of Python that shipped with OS X 10.5. Would updating python fix the problem? On Aug 1, 2010, at 2:55 AM, Ronald Oussoren wrote: On 31 Jul, 2010, at 23:02, Nathan Lemoine w

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Ronald Oussoren
On 1 Aug, 2010, at 19:08, Christopher Barker wrote: > Ronald Oussoren wrote: >> the pyglet sources explicitly load /usr/local/lib/libavbin.dylib using >> ctypes. I could create a py2app recipe that copies libavbin.dylib into the >> application bundle, but that will probably not be used without

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Christopher Barker
Ronald Oussoren wrote: the pyglet sources explicitly load /usr/local/lib/libavbin.dylib using ctypes. I could create a py2app recipe that copies libavbin.dylib into the application bundle, but that will probably not be used without patching the pyglet sources. This is a problem in general w

Re: [Pythonmac-SIG] py2app error

2010-07-31 Thread Ronald Oussoren
On 31 Jul, 2010, at 23:02, Nathan Lemoine wrote: > Running the testing application in the command line did confirm that the > pyglet module isn't being found: > > File "/Users/Nate/dist/tester.app/Contents/Resources/__boot__.py", line 160, > in _run >execfile(path, globals(), globals()) >

Re: [Pythonmac-SIG] py2app error

2010-07-31 Thread Nathan Lemoine
Running the testing application in the command line did confirm that the pyglet module isn't being found: File "/Users/Nate/dist/tester.app/Contents/Resources/__boot__.py", line 160, in _run execfile(path, globals(), globals()) File "/Users/Nate/Desktop/tester.py", line 1, in im

Re: [Pythonmac-SIG] py2app error

2010-07-29 Thread Ronald Oussoren
On 30 Jul, 2010, at 2:59, Nathan Lemoine wrote: > I installed the 0.5.2 update, and I've tried making just a very simple pyglet > app to play a movie file so that you all could try it if you want on your > python distributions: > > import pyglet > > vidPath="video.avi" ##put the path to a vid

Re: [Pythonmac-SIG] py2app error

2010-07-29 Thread Nathan Lemoine
I installed the 0.5.2 update, and I've tried making just a very simple pyglet app to play a movie file so that you all could try it if you want on your python distributions: import pyglet vidPath="video.avi" ##put the path to a video file here window = pyglet.window.Window() source = pyglet.

Re: [Pythonmac-SIG] py2app error

2010-07-28 Thread Ronald Oussoren
On 29 Jul, 2010, at 8:09, Ronald Oussoren wrote: > > On 28 Jul, 2010, at 18:38, Nathan Lemoine wrote: > >> >> Traceback (most recent call last): >> File >> "/Library/Python/2.5/site-packages/py2app-0.5-py2.5.egg/py2app/build_app.py", >> line 602, in _run >> self.run_alias() >> File >> "/L

Re: [Pythonmac-SIG] py2app error

2010-07-28 Thread Ronald Oussoren
On 28 Jul, 2010, at 18:38, Nathan Lemoine wrote: > Hey everyone, > > I've been trying to bundle my script into a standalone Mac application using > the most updated version of py2app and Python 2.5 on OSX 10.5.8. I'm getting > error messages during the compile procedure and I haven't come acro

[Pythonmac-SIG] py2app error

2010-07-28 Thread Nathan Lemoine
Hey everyone, I've been trying to bundle my script into a standalone Mac application using the most updated version of py2app and Python 2.5 on OSX 10.5.8. I'm getting error messages during the compile procedure and I haven't come across a way to fix it. So I can run the py2applet and gener

Re: [Pythonmac-SIG] Py2app error with libpng

2009-11-24 Thread Ronald Oussoren
On 6 Nov, 2009, at 23:55, Kevin Walzer wrote: > On 11/6/09 11:27 AM, Brian Zambrano wrote: >> Hi there, >> >> I'm building an app with py2app and it runs successfully both on my >> computer and a friends. We both have the developer tools installed. On >> two other Macs, the application would d

Re: [Pythonmac-SIG] py2app error 10810...

2008-11-03 Thread Christopher Barker
Sarah Ring wrote: I have Python version 2.5.1 (r251:54863, Apr 15 2008, 22:57:26) and Py2app version 0.3 You may want to upgrade: $easy_install -U py2app should do it. I'm not using any packages for this test, but I plan to use pyqt4 in the future. I tried py2applet --make-setup hello.py

Re: [Pythonmac-SIG] py2app error 10810...

2008-11-02 Thread Sarah Ring
I have Python version 2.5.1 (r251:54863, Apr 15 2008, 22:57:26) and Py2app version 0.3 I'm not using any packages for this test, but I plan to use pyqt4 in the future. I tried py2applet --make-setup hello.py (also tried py2applet hello.py --make-setup) to create a setup.py. It goes through: *** us

Re: [Pythonmac-SIG] py2app error 10810...

2008-10-30 Thread Christopher Barker
Sarah Ring wrote: LSOpenFromURLSpec() failed with error -10810 for the file /Users/***/Documents/epics/Fall08/hello.app Does anyone know what this means and how to resolve it? I haven't seen that, but: Does it do the same thing when you double-click on it? Which version of py2app are you us

[Pythonmac-SIG] py2app error 10810...

2008-10-30 Thread Sarah Ring
Hello, I'm a student, and I'm trying to turn just a simple python file into a .app with py2app. I installed py2app and it makes a .app folder, but it won't open for some reason. when I try "open hello.app" i get this error: LSOpenFromURLSpec() failed with error -10810 for the file /Users/***/Do

[Pythonmac-SIG] py2app error with pygraphviz module

2008-02-19 Thread hexsprite
I am using py2app to create an application that has a dependency on pygraphviz module. It builds fine but when I run it I get the following error in the console: - 19/02/08 11:18:14 AM PPM[7521] PPM Error An unexpected error has occurred during execution of the main script ImportError: '/Sy

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-14 Thread Chris Van Bael
> > What are the versions of py2app, macholib, altgraph, modulegraph on your > > machine? Likewise for python itself. > > > > Just in case this is important: what version of OSX are you using, is it > > an Intel or PPC system and do you have the Developer Tools installed? > > from my first mail: >

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-06 Thread altern
Ronald Oussoren wrote: > > On 5 Feb, 2007, at 22:04, altern wrote: > >> Ronald Oussoren wrote: >>> On 5 Feb, 2007, at 18:30, Chris Van Bael wrote: Hi, I'm getting essentially the same error for some time now. Could anybody please explain what is going wrong here exactly, becau

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread Ronald Oussoren
On 5 Feb, 2007, at 22:04, altern wrote: > Ronald Oussoren wrote: >> On 5 Feb, 2007, at 18:30, Chris Van Bael wrote: >>> Hi, >>> >>> I'm getting essentially the same error for some time now. >>> Could anybody please explain what is going wrong here exactly, >>> because >>> me and some other peop

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread altern
Ronald Oussoren wrote: > On 5 Feb, 2007, at 18:30, Chris Van Bael wrote: > >> Hi, >> >> I'm getting essentially the same error for some time now. >> Could anybody please explain what is going wrong here exactly, because >> me and some other people are having the same error and re-installing >> py2

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread Ronald Oussoren
On 5 Feb, 2007, at 18:30, Chris Van Bael wrote: > Hi, > > I'm getting essentially the same error for some time now. > Could anybody please explain what is going wrong here exactly, because > me and some other people are having the same error and re-installing > py2app doesn't fix the problem. > >

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread Bob Ippolito
As I said, it's some bug in macholib that causes it to produce an executable that isn't formed correctly. The fix for the problem is to find and fix whatever bug this happens to be in macholib. Personally I won't have time to look at this problem for a while. -bob On 2/5/07, Chris Van Bael <[EMAI

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread Chris Van Bael
Hi, I'm getting essentially the same error for some time now. Could anybody please explain what is going wrong here exactly, because me and some other people are having the same error and re-installing py2app doesn't fix the problem. See: http://mail.python.org/pipermail/pythonmac-sig/2007-Januar

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread Bob Ippolito
When you see an error like that, it means there's a bug in macholib that caused it to produce a bogus file. Turning strip off doesn't really fix anything... -bob On 2/5/07, altern <[EMAIL PROTECTED]> wrote: > hi again > > I solved the problem by doing > $ python setup.py py2app --no-strip > > I r

Re: [Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread altern
hi again I solved the problem by doing $ python setup.py py2app --no-strip I read this about strip --strip (-S)strip debug and local symbols from output (on by default, for compatibility) could anyone explain a bit more about what this is? or maybe point to

[Pythonmac-SIG] py2app error with /usr/bin/strip

2007-02-05 Thread altern
Hi I am getting this error when trying to use py2app. $ py2applet --make-setup glut_opengl.py $ python setup.py py2app ... ... stripping bz2.so stripping zlib.so stripping _codecs_tw.so stripping umath.so stripping binascii.so /usr/bin/strip: for architecture i386 object: /Users/xxx/ixi/python/d

[Pythonmac-SIG] py2app error

2006-06-23 Thread robin meier
hello, i installed pyobjc from here http://pyobjc.sourceforge.net/software/ on my os 10.4.6 i then tried to run the py2app example "simple" which is in / developer/python/py2app/examples/simple by typing the command python setup.py py2app it starts and seems to go well, but then stops with th

Re: [Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Bob Ippolito
On Dec 28, 2004, at 10:18 PM, Kevin Dangoor wrote: Bob Ippolito wrote: On Dec 28, 2004, at 12:14 PM, Kevin Dangoor wrote: Kevin Dangoor wrote: I don't see _py_suffixes defined anywhere... One more bit of relevant info... I just noticed that the file in question was a ".ptl" file (from Quixote) th

Re: [Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Kevin Dangoor
Bob Ippolito wrote: On Dec 28, 2004, at 12:14 PM, Kevin Dangoor wrote: Kevin Dangoor wrote: I don't see _py_suffixes defined anywhere... One more bit of relevant info... I just noticed that the file in question was a ".ptl" file (from Quixote) that was compiled into a ".pyc". That would probabl

Re: [Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Bob Ippolito
On Dec 28, 2004, at 12:14 PM, Kevin Dangoor wrote: Kevin Dangoor wrote: First of all, thanks for all of the work put into py2app! Hard to imagine how much time it would have taken me to figure out all of the various things that it does (particularly since I'm new to Mac development). I was just

Re: [Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Bob Ippolito
On Dec 28, 2004, at 12:05 PM, Kevin Dangoor wrote: First of all, thanks for all of the work put into py2app! Hard to imagine how much time it would have taken me to figure out all of the various things that it does (particularly since I'm new to Mac development). I was just going to rebuild an

Re: [Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Kevin Dangoor
One more bit of relevant info... I just noticed that the file in question was a ".ptl" file (from Quixote) that was compiled into a ".pyc". Kevin Kevin Dangoor wrote: First of all, thanks for all of the work put into py2app! Hard to imagine how much time it would have taken me to figure out all

[Pythonmac-SIG] py2app error with _py_suffixes

2004-12-28 Thread Kevin Dangoor
First of all, thanks for all of the work put into py2app! Hard to imagine how much time it would have taken me to figure out all of the various things that it does (particularly since I'm new to Mac development). I was just going to rebuild an app and ran into this error: File "/purelib/py2app/