We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I changed run.py to see how the iiwa example works.
` from mujoco_base import MuJoCoBase from examples.iiwa import Iiwa
def main(): xml_path = "./xml/iiwa/iiwa.xml" sim = Iiwa(xml_path) sim.reset() sim.simulate()
if name == "main": main()
`
I am getting error:
Traceback (most recent call last): File "run.py", line 2, in from examples.iiwa import Iiwa File "/home/mamad/Mujoco_ws/MuJoCo-Tutorial/examples/iiwa.py", line 7 from ../controllers.lqr import lqr ^ SyntaxError: invalid syntax
To Reproduce Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered:
I met the same error
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I changed run.py to see how the iiwa example works.
`
from mujoco_base import MuJoCoBase
from examples.iiwa import Iiwa
def main():
xml_path = "./xml/iiwa/iiwa.xml"
sim = Iiwa(xml_path)
sim.reset()
sim.simulate()
if name == "main":
main()
`
I am getting error:
Traceback (most recent call last):
File "run.py", line 2, in
from examples.iiwa import Iiwa
File "/home/mamad/Mujoco_ws/MuJoCo-Tutorial/examples/iiwa.py", line 7
from ../controllers.lqr import lqr
^
SyntaxError: invalid syntax
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: