I have a fully working wxpython based application, written all in Python. I wanted to make an exe, so I used cxFreeze.
During the build, there are many modules which seem to be missing, which sometimes should not make a problem, but when I run the application it gives me an error from MySQLdb module:
NotImplementedError: resource_filename() only supported for .egg not .zip
I have a .egg for MySQL at Python 2.7 / Lib / Site-Packages.
Any help or suggestions are highly appreciated.
Thanks!
For anyone having the same problem in the future:
This worked for me with cxfreeze. Now my executable is running.