You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with Blender with python > 3.8, if you installed the bindings via conda you get this error:
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
File "C:\Users\ngenesio\AppData\Local\mambaforge\envs\robotologyenv\Lib\site-packages\yarp.py", line 15, in <module>
import _yarp
ImportError: DLL load failed while importing _yarp: The specified module could not be found.
This is due to the fact that from Python 3.8 it changed basically how the DLL are loaded, see ref.
When trying
with Blender with python > 3.8, if you installed the bindings via conda you get this error:
This is due to the fact that from Python 3.8 it changed basically how the DLL are loaded, see ref.
This problem is fixed if before
import
you call:with
%CONDA_PREFIX%
expanded.The best solution would be add to the script something like ROS2 bindings see ref
cc @traversaro
The text was updated successfully, but these errors were encountered: