如标题中所述,当尝试使用ctypes在sikuli脚本中加载.dll时,im出现RuntimeError。
import ctypes
path = %path to dll file%
mydll = ctypes.CDLL(path)
错误显示如下:
[error] script (Test_ctypes) stopped with error in line 6
[error] RuntimeError (path)
[error] ---Traceback--- error source first
line: module (function) statement
262: __init__ (__init__) RuntimeError: path
6: main (<module>) mydll = ctypes.CDLL(path)
[error] ---Traceback --- end ---------------
我已经在另一台PC上使用的anaconda版本中尝试了相同的代码,并且运行良好,甚至可以与.dll中的功能进行交互。
我的猜测可能是某种安装问题。由于我对运行脚本的PC没有完全控制权,因此,如果可能的话,我需要确切地知道错误的原因...
谢谢。