I am using py2exe-0.6.9.win32-py2.7.exe and converted a .py file to .exe. The problem is that it won\'t open as it says something like \'unable to import Frame\' when I try to o
you need to place '__init__.py' to every module your using in your project. since init.py tell to your py2exe convertor that there is a python module here.
Since i have faced the same issue Few days back. with zope.interface and mp_tools i placed empty __init__.py worked fine for me