Installation#
VS Code First#
If you want a guided, editor-first path for creating a virtual environment, installing the published package, and running a first script, start with VS Code Setup Guide.
Package Install#
pip install design-research-agents
Editable Install#
git clone https://github.com/cmudrc/design-research-agents.git
cd design-research-agents
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -e ".[dev]"
Maintainer Shortcut#
make dev
Backend Extras#
Backend clients are intentionally optional. Install only what your study needs. For example:
pip install -e ".[openai]"
pip install -e ".[anthropic]"
pip install -e ".[local]"
pip install -e ".[full]"
Use Dependencies and Extras for the complete matrix and platform caveats.