Quickstart¶
Get erdos running locally in minutes.
Install¶
git clone https://github.com/The-Obstacle-Is-The-Way/erdos-banger.git
cd erdos-banger
git submodule update --init --recursive
# Requires uv: https://docs.astral.sh/uv/
uv sync
# Optional: configure API keys (gitignored)
cp .env.example .env
Run¶
Data (What erdos loads by default)¶
Problem data is resolved in this order (see src/erdos/core/problem_loader.py):
ERDOS_DATA_PATH(file or directory)data/problems_enriched.yaml(local override; gitignored)- Built-in sample dataset shipped with the package (
src/erdos/data/problems_enriched.yaml) data/erdosproblems/data/problems.yaml(upstream submodule; metadata-only fallback)
To create a local, editable dataset override:
Next Steps¶
- Learn common workflows: Common Usage
- Configure API keys and paths: Configuration
- Full command flags: CLI Reference