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
Hi!
I am an undergrad student at Technion, I use MuJoCo for my research on Robotic arms.
I am using MuJoCo on python on Mac(M-series chip) with Sequoia 15.3.2, and I cannot import not pre-built packages when running with mjpython
Well, I expected it to run, but it does not
pip3 install mink
import mujoco import mink import numpy as np def setup(): XML_PATH = "ur5e_scene.xml" model = mujoco.MjModel.from_xml_path(XML_PATH) data = mujoco.MjData(model) key_name = "home" key_id = mujoco.mj_name2id(model, mujoco.mjtObj.mjOBJ_KEY, key_name) if key_id >= 0: data.qpos[:] = model.key_qpos[key_id].copy() data.ctrl[:] = model.key_ctrl[key_id].copy() # Make sure the state is updated: mujoco.mj_forward(model, data) return model, data if __name__ == "__main__": setup()
Traceback (most recent call last): File "/universal_robots_ur5e/setup.py", line 2, in <module> import mink ModuleNotFoundError: No module named 'mink'
The model is not that relevant, to be honest, but for argument's sake, you can use the default one:
<mujoco> <worldbody> <light pos="0 0 1"/> <geom type="sphere" size="1" rgba="1 0 0 1"/> </worldbody> </mujoco>
The text was updated successfully, but these errors were encountered:
Did you ask on the mink repo?
cc @kevinzakka
Sorry, something went wrong.
@yuvaltassa this is not mink related issue as the rest of the 3rd party packages are also not loading. Should have mentioned that in the issue
No branches or pull requests
Intro
Hi!
I am an undergrad student at Technion, I use MuJoCo for my research on Robotic arms.
My setup
I am using MuJoCo on python on Mac(M-series chip) with Sequoia 15.3.2, and I cannot import not pre-built packages when running with mjpython
What's happening? What did you expect?
Well, I expected it to run, but it does not
Steps for reproduction
pip3 install mink
Minimal model for reproduction
The model is not that relevant, to be honest, but for argument's sake, you can use the default one:
minimal XML
Code required for reproduction
Confirmations
The text was updated successfully, but these errors were encountered: