Skip to content

Commit f9c0056

Browse files
committed
Bump up the mujoco-py version to 2.0.2.2
1 parent 65cd168 commit f9c0056

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ Surreal Robotics Suite officially supports Mac OS X and Linux on Python 3.5 or 3
2121

2222
The base installation requires the MuJoCo physics engine (with [mujoco-py](https://github.com/openai/mujoco-py), refer to link for troubleshooting the installation and further instructions) and [numpy](http://www.numpy.org/). To avoid interfering with system packages, it is recommended to install it under a virtual environment by first running `virtualenv -p python3 . && source bin/activate`.
2323

24-
First download MuJoCo 1.5.0 ([Linux](https://www.roboti.us/download/mjpro150_linux.zip) and [Mac OS X](https://www.roboti.us/download/mjpro150_osx.zip)) and place the `mjpro150` folder and your license key `mjkey.txt` in `~/.mujoco`. You can obtain a license key from [here](https://www.roboti.us/license.html).
24+
First download MuJoCo 2.0 ([Linux](https://www.roboti.us/download/mujoco200_linux.zip) and [Mac OS X](https://www.roboti.us/download/mujoco200_macos.zip)) and place the `mujoco200` folder and your license key `mjkey.txt` in `~/.mujoco`. You can obtain a license key from [here](https://www.roboti.us/license.html).
2525
- For Linux, you will need to install some packages to build `mujoco-py` (sourced from [here](https://github.com/openai/mujoco-py/blob/master/Dockerfile), with a couple missing packages added). If using `apt`, the required installation command is:
2626
```sh
2727
$ sudo apt install curl git libgl1-mesa-dev libgl1-mesa-glx libglew-dev \
2828
libosmesa6-dev software-properties-common net-tools unzip vim \
2929
virtualenv wget xpra xserver-xorg-dev libglfw3-dev patchelf
3030
```
31-
Note that for older versions of Ubuntu (e.g., 14.04) there's no libglfw3 package, in which case you need to `export LD_LIBRARY_PATH=$HOME/.mujoco/mjpro150/bin` before proceeding to the next step.
31+
Note that for older versions of Ubuntu (e.g., 14.04) there's no libglfw3 package, in which case you need to `export LD_LIBRARY_PATH=$HOME/.mujoco/mujoco200/bin` before proceeding to the next step.
3232

3333
### Install from pip
3434
1. After setting up mujoco, robosuite can be installed with

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
numpy>=1.13.3
2-
mujoco-py<1.50.2,>=1.50.1
2+
mujoco-py==2.0.2.2
33
-e .

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
install_requires=[
1010
"numpy>=1.13.3",
11-
"mujoco-py<1.50.2,>=1.50.1",
11+
"mujoco-py==2.0.2.2",
1212
],
1313
eager_resources=['*'],
1414
include_package_data=True,

0 commit comments

Comments
 (0)