Installation Guide
Prerequisites
Python 3.12.3
pip
Quick Start Guide
Get BLADE
Click on "Clone or download", and then "Download Zip".
Unzip the repo anywhere.
Navigate to the folder than contains
setup.py
and install the repository usingpip install .
Anytime you make changes to the files in the project folder, you need to reinstall the package usingpip install .
. Alternatively, usepip install -e .
to install the package in editable mode. After doing this you can change the code without needing to continue to install it.gymnasium is a dependency for users who want to use BLADE as a Gym environment. In this case, use
pip install .[gym]
orpip install -e .[gym]
for setup.
Run a demo
Run the provided demo in
scripts/simple_demo/demo.py
.The demo will output a scenario file that can be viewed using the frontend GUI.
Last updated