mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 22:11:25 +00:00
Add missing PyOpenGL dep
This commit is contained in:
6
setup.py
6
setup.py
@@ -19,15 +19,15 @@ setup(name='gym',
|
|||||||
'numpy>=1.10.4', 'requests', 'six'
|
'numpy>=1.10.4', 'requests', 'six'
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'all': ['atari_py>=0.0.17', 'Pillow', 'pyglet',
|
'all': ['atari_py>=0.0.17', 'Pillow', 'pyglet', 'PyOpenGL'
|
||||||
'pachi-py>=0.0.18',
|
'pachi-py>=0.0.18',
|
||||||
'mujoco_py>=0.4.1', 'imageio'],
|
'mujoco_py>=0.4.1', 'imageio'],
|
||||||
|
|
||||||
# Environment-specific dependencies. Keep these in sync with
|
# Environment-specific dependencies. Keep these in sync with
|
||||||
# 'all'!
|
# 'all'!
|
||||||
'atari': ['atari_py>=0.0.17', 'Pillow', 'pyglet'],
|
'atari': ['atari_py>=0.0.17', 'Pillow', 'pyglet', 'PyOpenGL'],
|
||||||
'board_game' : ['pachi-py>=0.0.18'],
|
'board_game' : ['pachi-py>=0.0.18'],
|
||||||
'classic_control': ['pyglet'],
|
'classic_control': ['pyglet', 'PyOpenGL'],
|
||||||
'mujoco': ['mujoco_py>=0.4.1', 'imageio'],
|
'mujoco': ['mujoco_py>=0.4.1', 'imageio'],
|
||||||
},
|
},
|
||||||
package_data={'gym': ['envs/mujoco/assets/*.xml', 'envs/classic_control/assets/*.png']},
|
package_data={'gym': ['envs/mujoco/assets/*.xml', 'envs/classic_control/assets/*.png']},
|
||||||
|
Reference in New Issue
Block a user