Simulate documentation

πŸ’» Installation

You are viewing main version, which requires installation from source. If you'd like regular pip install, checkout the latest stable version (v0.1.2).
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()