我正在尝试使用 Python-Shell 模块在 NodeJS 中使用 PyVisa。我有 python 代码工作,与 HPIB 设备交谈。只是,我收到警告-
c:\python34\lib\site-packages\pyvisa\ctwrapper\functions.py:1222: VisaIOWarning:
VI_WARN_CONFIG_NLOADED (1073676407): The specified configuration either does not
exist or could not be loaded. VISA-specified defaults will be used.
ret = library.viOpenDefaultRM(byref(session))
它只是一个警告。但是因为我想使用 stdin/stdout 将数据推送到 python 代码中,并从 python 代码接收数据,所以这个警告导致包装器停止,导致包装器回调错误。
至少我认为这是正在发生的事情。
有任何想法吗?