I was wondering why whenever I try to make a FlashWin program with python, it gives me this error after compiling it using py2exe, and opening it:
File "wx\lib\flashwin.pyc", line 15, in <module>
File "wx\lib\activex.pyc", line 36, in <module>
File "wx\lib\comtypes\__init__.pyc", line 24, in <module>
ImportError: No module named comtypes
For the record, when I installed wxPython, it didn't have the comtypes folder, so I manually downloaded it and placed it in the wx\lib folder. So what do you think the problem is? It only happens when I code FlashWin/ActiveX programs.
P.S: I'm still a beginner in Python/wxPython, so please excuse any mistakes I make.
Two possible issues:
python setup.py install
See also Working with specific pakages.