Hi, I'm very new to Python and programing in general and wanted to learn how to use the py2exe module. I think I've done the setup alright but I get an error message. Everything runs along smoothly until it start to make the dist folder. When it begins to make it i get and error message in Windows that says that py2exe_util.pyd is not a valid Windows image. Then I get an error message in the command prompt saying that DLL load failed with error code 193. I think the problem has something to do with py2exe_util but I don't know how to fix it. Does anyone know why this happens and how to fix it? By the way I'm using Windows XP.
I'm including my setup code just in case:
from distutils.core import setup
import py2exe
setup(console=['area.py'])
I know the code is very simple but this was just something to test if the module worked
Thanks in advance