Skip to content
You are viewing help for Supervertaler Workbench. Looking for Supervertaler for Trados help?

Installation

Option 1: Download Release (Easiest)

  1. Go to GitHub Releases
  2. Download the latest .zip file
  3. Extract to a folder of your choice
  4. Run Supervertaler.exe

Option 2: Run from Source

If you want the latest development version or want to contribute:

bash
# Clone the repository
git clone https://github.com/michaelbeijer/Supervertaler.git
cd Supervertaler

# Create virtual environment
python -m venv venv
venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Run the application
python Supervertaler.py

Linux

Supervertaler is compatible with Linux, though Windows is the primary development platform.

bash
# Clone the repository
git clone https://github.com/michaelbeijer/Supervertaler.git
cd Supervertaler

# Create virtual environment
python3 -m venv venv
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

# Install Hunspell dictionaries (for spellcheck)
sudo apt install hunspell-en-us hunspell-nl  # Add your languages

# Run the application
python Supervertaler.py

INFO

Linux Users: If you experience crashes related to spellcheck or ChromaDB, see Linux-Specific Issues.

Dependencies

The main dependencies are automatically installed via requirements.txt:

PackagePurpose
PyQt6User interface
openaiOpenAI GPT integration
anthropicAnthropic Claude integration
google-generativeaiGoogle Gemini integration
python-docxDOCX file handling
chromadbSupermemory vector search
sentence-transformersSemantic embeddings
pyspellcheckerSpellcheck

Next Steps

After installation:

  1. Set up your API keys for AI translation
  2. Follow the Quick Start Guide
  3. Create your first translation project

Supervertaler Workbench