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
What I did is I updated the 'setup.py' file to contain the paths to the missing modules, using
'setup.py'
import sys sys.path.insert(0, )
This way I do no need to polute the ...\site_packages\ folder.
...\site_packages\