🛠️Installation
There are several ways to install LatteReview:
1. Install from PyPI (Recommended)¶
You can also install additional features using these extras:
# Development tools
pip install "lattereview[dev]"
# Documentation tools
pip install "lattereview[docs]"
# All extras
pip install "lattereview[all]"
2. Install from Source Code¶
Option A: Using Git¶
Option B: Using ZIP Download¶
- Go to https://github.com/PouriaRouzrokh/LatteReview
- Click the green "Code" button
- Select "Download ZIP"
- Extract the ZIP file and navigate to the directory:
After obtaining the source code through either option, you can install it using one of these methods:
# Basic installation
pip install .
# Install from specific versions of dependencies mentioned in requirements.txt
pip install -r requirements.txt
# Development installation (all optional dependencies)
pip install -e ".[all]"
Verify Installation¶
Requirements¶
- Python 3.9 or later
- Core dependencies (automatically installed):
- litellm (>=1.55.2)
- openai (>=1.57.4)
- pandas (>=2.2.3)
- pydantic (>=2.10.3)
- And others as specified in
setup.py
Troubleshooting¶
If you encounter installation issues: