Re: [Pythonmac-SIG] py2app import errors

2009-08-20 Thread Aahz
On Wed, Aug 19, 2009, Oliver Goodman wrote: > > I'm having problems getting py2app to work for me. > > The program (minimal test case): > > # test.py > from Crypto.Cipher import DES3 Is Crypto in a zipped .egg? If yes, you need to unzip it. -- Aahz (a...@pythoncraft.com) <*>

[Pythonmac-SIG] py2app import errors

2009-08-20 Thread Oliver Goodman
Hi, I'm having problems getting py2app to work for me. The program (minimal test case): # test.py from Crypto.Cipher import DES3 if __name__ == '__main__': pass Runs fine on the command line. Then I do: mymble:bob oag$ rm -rf build/ dist/ mymble:bob oag$ py2applet --make-setup test

Re: [Pythonmac-SIG] Py2app: import errors while running the installed app (PyQt4.Qt imports)

2007-03-13 Thread Ninad Sathaye
esolved it. (at least the pkg got built) > -Original Message- > From: Ronald Oussoren [mailto:[EMAIL PROTECTED] > Sent: Monday, March 12, 2007 10:51 AM > To: Ninad Sathaye > Cc: pythonmac-sig@python.org > Subject: Re: [Pythonmac-SIG] Py2app: import errors while

Re: [Pythonmac-SIG] Py2app: import errors while running theinstalledapp (PyQt4.Qt imports)

2007-03-12 Thread Ronald Oussoren
, > >Ninad > >> -Original Message- >> From: Ninad Sathaye [mailto:[EMAIL PROTECTED] >> Sent: Thursday, March 01, 2007 10:22 AM >> To: pythonmac-sig@python.org >> Subject: [Pythonmac-SIG] Py2app: import errors while running >> the installedapp (

Re: [Pythonmac-SIG] Py2app: import errors while running the installedapp (PyQt4.Qt imports)

2007-03-12 Thread Ninad Sathaye
2 AM > To: pythonmac-sig@python.org > Subject: [Pythonmac-SIG] Py2app: import errors while running > the installedapp (PyQt4.Qt imports) > > Hi, > > I have built a package using py2app on MACOSX 10.3.9. My > application uses Qt4.2 > (PyQt4.1.x) framework. When run the

[Pythonmac-SIG] Py2app: import errors while running the installed app (PyQt4.Qt imports)

2007-03-01 Thread Ninad Sathaye
Hi, I have built a package using py2app on MACOSX 10.3.9. My application uses Qt4.2 (PyQt4.1.x) framework. When run the application (installed using the created package) it gives import errors. Example: " from PyQt4.Qt import QApplication ImportError : Cannot import name QApplication. " Py2