Skip to content

v0.2.3

Latest
Compare
Choose a tag to compare
@steffensc steffensc released this 04 Apr 12:13
· 6 commits to main since this release

Compiles now on Windows, but with issue: .lib and .dll files are copied to the wrong path's causing following issue when importing the module in python:
"ImportError: DLL load failed while importing _pyvicon_datastream_wrapper: Module not found."

Fix: Move them manually to module's folder:

  • (venv)/bin/ViconDataStreamSDK_CPP.dll => (venv)/Lib/site-packages/pyvicon_datastream/Lib/ViconDataStreamSDK_CPP.dll
  • (venv)/Lib/ViconDataStreamSDK_CPP.lib => (venv)/Lib/site-packages/pyvicon_datastream/Lib/ViconDataStreamSDK_CPP.lib (create a folder Lib inside pyvicon_datastream)