Error_IMU_MSCL module doesn't exist
Model: 3DM-CV5-25 Here are the steps we followed:
- Git_hub cloned the MSCL folder
- INstalled the MSCL library using the link https://github.com/LORD-MicroStrain/MSCL#mscl---the-microstrain-communication-library x64: C++ | Python 2 | Python 3
- Then tried to run Inertial inside MSCL_Examples using both python and python3 but it's showing some error
a) parenthesis not found in the print
b) mscl library not found.
For reference I have attached the image.
Sorry for the confusion!
It looks like Python is not able to find the MSCL package. When you install MSCL and its dependencies using the instructions on How to use MSCL it puts the MSCL resources into a folder in the usr/share directory - this is not a location where Python looks for packages by default.
Please double check that you have either moved the MSCL folder to a location in the Python sys.path or are appending the current installation location to sys.path. More information and instructions can be found here.
Currently our examples are written for Python 2, but can be easily updated for Python 3 with minimal changes, such as adding parentheses to the print statements. The Python version used will need to match with the pre-built MSCL version you installed.
Hope this helps - let us know if you continue to run into issues!