Re: [Pythonmac-SIG] Py2app zlib import error

2011-06-23 Thread Brian Zambrano
ls -l ./Resources/lib/python2.6/lib-dynload/zlib.so -rw-r--r-- 1 brianz staff 195256 Jun 23 00:09 ./Resources/lib/python2.6/lib-dynload/zlib.so file ./Resources/lib/python2.6/lib-dynload/zlib.so ./Resources/lib/python2.6/lib-dynload/zlib.so: Mach-O universal binary with 2 architectures

Re: [Pythonmac-SIG] Py2app zlib import error

2011-06-23 Thread Brian Zambrano
It smells of a py2app issue to me as well...something with the path settings. I don't have macports installed on this machine, so that's definitely not it. The exact same error happens when doing a hello world program with py2app. The setup file, unaltered: This is a setup.py script generated

Re: [Pythonmac-SIG] Py2app zlib import error

2011-06-23 Thread Chris Barker
On 6/22/11 7:30 PM, Brian Zambrano wrote: Just bumping this. Does anyone have solution or some advice on how to proceed? The error is: 'import site' failed; use -v for traceback ... zipimport.ZipImportError: can't decompress data; zlib not available This looks like it has

Re: [Pythonmac-SIG] Py2app zlib import error

2011-06-23 Thread Ned Deily
In article BANLkTi=rqswtbkbqwgr+sgb8xr-kxfb...@mail.gmail.com, Brian Zambrano bri...@gmail.com wrote: ls -l ./Resources/lib/python2.6/lib-dynload/zlib.so [...] Sorry, nothing obviously wrong there. So presumably it is some sort of path issue in the py2app bootstrap. Hope you track it down.