Installation
Windows (Recommended)
Option 1: Download Release (Easiest)
- Go to GitHub Releases
- Download the latest
.zipfile - Extract to a folder of your choice
- Run
Supervertaler.exe - Optional: double-click
Add Supervertaler to Start Menu.cmdonce to add a Start Menu shortcut, so you can launch the app from the Start Menu (or pin it to the taskbar) like any installed program. This is just a friendly wrapper aroundcreate_start_menu_shortcut.ps1that bypasses Windows’ default PowerShell ExecutionPolicy without changing any system-wide settings.
Option 2: Run from Source
If you want the latest development version or want to contribute:
# Clone the repositorygit clone https://github.com/Supervertaler/Supervertaler-Workbench.gitcd Supervertaler
# Create virtual environmentpython -m venv venvvenv\Scripts\activate
# Install dependenciespip install -r requirements.txt
# Run the applicationpython Supervertaler.pymacOS
The macOS install method depends on your Mac’s processor.
Apple Silicon (M1, M2, M3, M4) — Download Release
- Go to GitHub Releases
- Download the latest
.dmgfile - Open the
.dmgand drag Supervertaler to your Applications folder - Launch from Spotlight or Launchpad
Intel Macs — Install via pip
The published macOS .dmg is built for Apple Silicon only and will not run on Intel hardware. Intel Mac users need to install via pip and provide a system Java for the Okapi sidecar (which handles Word, Excel, HTML and other office-document imports).
# 1. Install Homebrew (skip if already installed)/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# 2. Install Python 3 (skip if already installed)brew install python@3.12
# 3. Install Java 17 (Eclipse Temurin, free, no Oracle account required)brew install --cask temurin@17
# 4. Install Supervertalerpip3 install supervertaler
# 5. Run itsupervertalerIf you skip the Java step, Supervertaler shows a friendly dialog at startup with the install command. Plain-text translation, TMX, glossaries, etc. all work without Java – only office-document import/export needs it.
On first DOCX import, Supervertaler downloads the Okapi sidecar JAR (~28 MB) into ~/Library/Application Support/Supervertaler/okapi-sidecar/. After that, everything runs locally and offline.
Run from Source (any Mac)
Follow the Linux source instructions below – the commands are identical except for the spellcheck step, where you’d use brew install hunspell instead of apt install hunspell-*.
Linux
Supervertaler is compatible with Linux, though Windows is the primary development platform.
# Clone the repositorygit clone https://github.com/Supervertaler/Supervertaler-Workbench.gitcd Supervertaler
# Create virtual environmentpython3 -m venv venvsource venv/bin/activate
# Install dependenciespip install -r requirements.txt
# Install Hunspell dictionaries (for spellcheck)sudo apt install hunspell-en-us hunspell-nl # Add your languages
# Run the applicationpython Supervertaler.pyDependencies
The main dependencies are automatically installed via requirements.txt:
| Package | Purpose |
|---|---|
| PyQt6 | User interface |
| openai | OpenAI GPT integration |
| anthropic | Anthropic Claude integration |
| google-generativeai | Google Gemini integration |
| python-docx | DOCX file handling |
| pyspellchecker | Spellcheck |
Next Steps
After installation:
- Set up your API keys for AI translation
- Follow the Quick Start Guide
- Create your first translation project