Reputation: 101261
I'm trying to use the WConio library for python, but when I import it, it gives this error:
Traceback (most recent call last):
File "WConioExample.py", line 15, in < module>
import WConio File "d:\tools\development\python2.5\lib\site-packages\WConio.py", line 23, in
from _WConio import * ImportError: DLL load failed with error code 193
I've installed WConio-1.5.win32-py2.5.exe
and made sure the _WConio.pyd file exists. I'm using it on Win7.
I have searched for this problem, but the results were of no good use.
What can I do to solve this?
Upvotes: 0
Views: 1456
Reputation: 15844
Probably, you've installed 32 bit library on 64 bit system.
Upvotes: 1