Simulate documentation

πŸ’» Installation

Hugging Face's logo
Join the Hugging Face community

and get access to the augmented documentation experience

to get started

πŸ’» Installation

πŸ€— Simulate can be installed in python using pip:

pip install simulate

πŸ€— Simulate comes with additional support for reinforcement learning libraries, including gym:

pip install simulate[gym]

stable baselines 3:

pip install simulate[sb3]

and sample-factory (experimental):

pip install simulate[sf]

Verify that πŸ€— Simulate is working correctly by showing a simple scene:

import simulate as sm
scene = sm.Scene(engine="Unity")
scene += sm.LightSun() + sm.Box()
scene.show()