我正在尝试使用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代码接收数据,所以这个警告会导致包装器停止,从而导致包装器回调错误。
至少我认为这就是正在发生的事情。
有什么想法吗?