I am currently trying to convert a program I just wrote to application form, on the Mac. I'm using py2app to accomplish this, and everything works fine up until the last stage; when I try to complete the conversion with:
and then run the resulting executable, I get the error:
The really strange thing is that when I was testing the application creation by making an app bundle, using
the resulting application bundle worked perfectly. So something is going wrong between making the app bundle and creating the actual app itself. The entire purpose of my program is database connection, so commenting out that portion of its capabilities is not an option.
Thanks ahead of time,
Adam
Code:
python setup.py py2app
Code:
ImportError: No module named MySQLdb
Code:
python setup.py py2app -A
Thanks ahead of time,
Adam
Comment