Ikke
Ikke

Reputation: 101261

Problems using the python WConio library

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

Answers (1)

Eugene Morozov
Eugene Morozov

Reputation: 15844

Probably, you've installed 32 bit library on 64 bit system.

Upvotes: 1

Related Questions