Skip to content

Latest commit

 

History

History
69 lines (52 loc) · 1.16 KB

installation.md

File metadata and controls

69 lines (52 loc) · 1.16 KB

Installation Guide

Requirements

  • Python 3.7+
  • pip (Python package installer)

Quick Installation

  1. Clone the repository:
git clone https://github.com/hasanbeder/translation-diff-checker.git
cd translation-diff-checker
  1. Install dependencies:
pip install -r requirements.txt
  1. Verify installation:
python3 src/translation_diff_checker.py --version
# Should output: translation-diff-checker 0.2.0

Development Installation

For contributors and developers:

  1. Clone the repository:
git clone https://github.com/hasanbeder/translation-diff-checker.git
cd translation-diff-checker
  1. Create a virtual environment (recommended):
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Run tests:
pytest tests/

Troubleshooting

If you encounter any issues during installation:

  1. Make sure Python 3.7+ is installed:
python3 --version
  1. Verify pip is installed:
pip --version
  1. Check if all dependencies are installed:
pip freeze | grep -E "pytest|coverage"