There are several ways to install LatteReview:
pip install lattereview
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]"
# Clone the repository
git clone https://github.com/PouriaRouzrokh/LatteReview.git
cd LatteReview
- Go to https://github.com/PouriaRouzrokh/LatteReview
- Click the green "Code" button
- Select "Download ZIP"
- Extract the ZIP file and navigate to the directory:
cd path/to/LatteReview-main
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]"
import lattereview
print(lattereview.__version__)
- 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
If you encounter installation issues:
# Check Python version
python --version # Should be 3.9 or later
# Update pip
pip install --upgrade pip
# Install build dependencies
pip install build wheel setuptools