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
I installed this package from the binaries, and tried to run the test_dcmZmpControl_file.py file in /opt/openrobots/lib/python2.7/site-packages/sot_talos_balance/test.
After fixing locally the import error from from dynamic_graph.sot.core import SOT, Derivator_of_Vector, FeaturePosture, MatrixHomoToPoseQuaternion, Task in appli_dcmZmpControl_file.py by replacing it with:
from dynamic_graph.sot.core.sot import SOT, Task
from dynamic_graph.sot.core.math_small_entities import Derivator_of_Vector
from dynamic_graph.sot.core.feature_posture import FeaturePosture
from dynamic_graph.sot.core.operator import MatrixHomoToPoseQuaternion
I got this error:
command: from dynamic_graph.sot.core.feature_posture import FeaturePosture
standarderror: Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: cannot import name FeaturePosture
Hi,
I installed this package from the binaries, and tried to run the
test_dcmZmpControl_file.py
file in/opt/openrobots/lib/python2.7/site-packages/sot_talos_balance/test
.After fixing locally the import error from
from dynamic_graph.sot.core import SOT, Derivator_of_Vector, FeaturePosture, MatrixHomoToPoseQuaternion, Task
inappli_dcmZmpControl_file.py
by replacing it with:I got this error:
python -c "from dynamic_graph.sot.core.feature_posture import FeaturePosture"
works.The text was updated successfully, but these errors were encountered: