MuJoCo: Difference between revisions
No edit summary |
|||
Line 37: | Line 37: | ||
<!--T:11--> | <!--T:11--> | ||
After using <code>module</code> to load the desired Python version, you should set up a clean virtual environment: | 1. After using <code>module</code> to load the desired Python version, you should set up a clean virtual environment: | ||
<!--T:12--> | <!--T:12--> | ||
Line 45: | Line 45: | ||
|source mujoco_env/bin/activate | |source mujoco_env/bin/activate | ||
}} | }} | ||
2. Install the <code>mujoco_py</code> module. | |||
{{Command | {{Command | ||
|prompt=(mujoco_env) [name@server $] | |prompt=(mujoco_env) [name@server $] | ||
Line 52: | Line 52: | ||
<!--T:13--> | <!--T:13--> | ||
3. Patch the paths with setrpaths.sh. Use the appropriate python version in the commands below if it is not 3.5: | |||
<!--T:14--> | <!--T:14--> | ||
Line 63: | Line 63: | ||
<!--T:15--> | <!--T:15--> | ||
4. Run the following command: | |||
<!--T:16--> | <!--T:16--> |
Revision as of 18:16, 5 June 2018
MuJoCo stands for Multi-Joint dynamics with Contact. It is a physics engine aiming to facilitate research and development in robotics, biomechanics, graphics and animation, and other areas where fast and accurate simulation is needed.[1]
It is frequently used with the associated Python module mujoco_py
as an environment for reinforcement learning (RL) research.
Installation
Base files
First, the .mujoco folder in your home directory must be set up. MuJoCo requires a licence key to be placed in ~/.mujoco/mjkey.txt. This key is obtained by e-mail after registration.
The appropriate (Linux) MuJoCo distribution must also be downloaded and unzipped into the ~/.mujoco directory from the Download section of the MuJoCo website.
Your ~/.mujoco folder should now look like this (the version might differ):
[name@server ~]$ ls ~/.mujoco
mjkey.txt mjproj150
mujoco_py
The Python interface to MuJoCo is the mujoco_py
module. Getting it to work requires some special steps because library paths need to be patched.
1. After using module
to load the desired Python version, you should set up a clean virtual environment:
[name@server ~]$ mkdir mujoco_env
[name@server ~]$ virtualenv mujoco_env
[name@server ~]$ source mujoco_env/bin/activate
2. Install the mujoco_py
module.
(mujoco_env) [name@server $] pip install mujoco_py
3. Patch the paths with setrpaths.sh. Use the appropriate python version in the commands below if it is not 3.5:
(mujoco_env) [name@server $] setrpaths.sh --path $VIRTUAL_ENV/lib/python3.5/site-packages/mujoco_py
(mujoco_env) [name@server $] setrpaths.sh --add_origin --path $HOME/.mujoco
4. Run the following command:
(mujoco_env) [name@server $] python -c "import mujoco_py"
It should have crashed, but the necessary paths will have been reated to run:
(mujoco_env) [name@server $] setrpaths.sh --path $VIRTUAL_ENV/lib/python3.5/site-packages/mujoco_py
After that last command, mujoco_py should be ready to use in the virtual environment. If everything is installed correctly, this next command should run without any errors:
(mujoco_env) [name@server $] python -c "import mujoco_py"