Installation
Requirements
Section titled “Requirements”- Python 3.10 or higher
- pip or uv package manager
Install with pip
Section titled “Install with pip”pip install dbsproutInstall with uv (recommended)
Section titled “Install with uv (recommended)”uv pip install dbsproutOptional Extras
Section titled “Optional Extras”DBSprout uses a modular install system. The core package is lightweight (~50MB). Add extras for additional capabilities:
# Embedded LLM support (offline AI-powered generation)pip install "dbsprout[llm]"
# Cloud LLM providers (OpenAI, Anthropic, etc.)pip install "dbsprout[cloud]"
# Statistical generation enginespip install "dbsprout[stats]"
# Fine-tuning with CUDApip install "dbsprout[train-cuda]"
# Fine-tuning with Apple MLXpip install "dbsprout[train-mlx]"
# Everythingpip install "dbsprout[all]"Verify Installation
Section titled “Verify Installation”dbsprout --versiondbsprout --helpNext Steps
Section titled “Next Steps”Continue to the Quick Start guide to generate your first seed data.