Installation¶
Requirements¶
- Python 3.11, 3.12, or 3.13
- pip or uv
Basic Install¶
Or with uv (recommended):
Optional Extras¶
Plyra Guard is modular. Install only what you need:
# Dashboard UI + sidecar API server
pip install "plyra-guard[sidecar]"
# OpenTelemetry exporter
pip install "plyra-guard[otel]"
# Datadog exporter
pip install "plyra-guard[datadog]"
# S3 snapshot storage
pip install "plyra-guard[storage]"
# Everything
pip install "plyra-guard[all]"
Verify Install¶
Development Install¶
Tip
Use a virtual environment to keep your project dependencies isolated.
uv handles this automatically.