- Python 3.7+
- pip (Python package installer)
- Clone the repository:
git clone https://github.com/hasanbeder/translation-diff-checker.git
cd translation-diff-checker
- Install dependencies:
pip install -r requirements.txt
- Verify installation:
python3 src/translation_diff_checker.py --version
# Should output: translation-diff-checker 0.2.0
For contributors and developers:
- Clone the repository:
git clone https://github.com/hasanbeder/translation-diff-checker.git
cd translation-diff-checker
- Create a virtual environment (recommended):
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Run tests:
pytest tests/
If you encounter any issues during installation:
- Make sure Python 3.7+ is installed:
python3 --version
- Verify pip is installed:
pip --version
- Check if all dependencies are installed:
pip freeze | grep -E "pytest|coverage"