Python ImportError: DLL load failed: %1 不是有效的Win32

>>> import cx_Oracle  
Traceback (most recent call last):  
  File "<stdin>", line 1, in <module>  
ImportError: DLL load failed: %1 不是有效的 Win32 应用程序。

这个是因为你安装了64位的python,然后安装32位的mysql模块,或者你安装了32位的python,然后安装64位的myql模块

解决方法:卸载Python,然后重装


你可能感兴趣的:(mysql,python)