I am trying to get a spectrum analyzer program example working but it is having problems finding the module. Here is the error I'm getting
Traceback (most recent call last):
File "C:\Users\user\Documents\Programs\Python_program_example.py", line 10, in <module>
rsa300 = ctypes.WinDLL("C:\\Tektronix\\RSA306 API\\lib\\x64\\RSA300API.dll")
File "C:\Python27\lib\ctypes\__init__.py", line 365, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found
The DLL exists and os.path.exists()
prints true
with that path so I'm not sure what the problem is. Does anyone know what is wrong with this?