Issue
I try run from underactuated.exercises.pend.test_vibrating_pendulum import TestVibratingPendulum
in vibrating_pendulum.ipynb
and I have got:
ModuleNotFoundError: No module named 'timeout_decorator'
Solution
My guess is that you're running the underactuated notebooks on your local machine and did not install the underactuated requirements?
pip3 install -r underactuated/requirements.txt
will install the timeout-decorator
package, and any others you're missing.
Answered By - Russ Tedrake
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.