Skip to content

Commit

Permalink
Resolve conflicts between mujoco-py and gym temporarily (#2188)
Browse files Browse the repository at this point in the history
* Pin pip to 20.2

* Pin pip to 20.2.4

* Pin pip to 20.2.4

* Resolve conflict between mujoco-py and gym

* Add comments
  • Loading branch information
yeukfu authored Dec 1, 2020
1 parent f8aaef2 commit 9a2a0bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@

EXTRAS['mujoco'] = [
'mujoco-py>=2.0,<=2.0.2.8',
f'gym[all]=={GYM_VERSION}',
# Currently gym is not compatible with mujoco 2.0 because of poor
# performance. So here we just install imageio to meet the dependency
# requirement of gym's mujoco extra.
'imageio',
]

EXTRAS['dm_control'] = [
Expand Down

0 comments on commit 9a2a0bb

Please sign in to comment.