Installation¶
Install QUASAR using pip from PyPI.
Requirements¶
| Requirement | Version |
|---|---|
| Python | 3.10+ |
| pip | Latest |
| OS | Windows, macOS, Linux |
Install from PyPI¶
This installs QUASAR and all dependencies including:
typer- CLI frameworkrich- Terminal formattinglangchain- AI orchestrationlangchain-groq,langchain-ollama- Provider integrations
Verify Installation¶
You should see:
Upgrade¶
To upgrade to the latest version:
Development Installation¶
For development or contributing:
# Clone the repository
git clone https://github.com/Sunilk240/QUASAR.git
cd QUASAR/quasar-cli
# Install in development mode
pip install -e ".[dev]"
Troubleshooting¶
Python Version Error¶
Solution: Upgrade Python:
Permission Error¶
Solution: Use --user flag or virtual environment:
pip install --user quasar-ai
# Or use virtual environment (recommended)
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install quasar-ai
Next Steps¶
After installation, configure your API keys.