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).
π» 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()