Getting started¶
Install¶
We recommend a fresh Conda environment (use miniconda or miniforge).
pip install dirigo
For development from source:
git clone https://github.com/dirigo-developers/dirigo
cd dirigo
pip install -e .
Quickstart (simulated hardware)¶
# minimal skeleton — adjust to your actual API
import dirigo
def main():
pass
# TODO
if __name__ == "__main__":
main()
Note
Real hardware examples are provided as tutorials but are not executed on Read the Docs.