pywin32 安装错误 ImportError: DLL load failed: 不是有效的 Win32 应用程序。
发现是因为没有制定Pywin32的dll所致,我们在用Pywin32开发时,需要用到它的几个DLL。分别是
pythoncom32.dll
pythoncomloader32.dll
pywintypes32.dll
它们就在你Pyhton安装目录下,“Lib\site-packages\pywin32_system32”目录,只要把这三个dll,拷贝到system32目录下,或者把这个目录放到"Path"的环境变量下就可以了。
转自:http://www.cnblogs.com/andreitang/archive/2011/10/12/2208341.html