Installation (Workbench)

Option 1: Download Release (Easiest)

  1. Download the latest .zip file

  2. Extract to a folder of your choice

  3. Run Supervertaler.exe

  4. Optional: double-click Add Supervertaler to Start Menu.cmd once 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 around create_start_menu_shortcut.ps1 that 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 repository
git clone https://github.com/Supervertaler/Supervertaler-Workbench.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

macOS

The macOS install method depends on your Mac's processor.

Apple Silicon (M1, M2, M3, M4) — Download Release

  1. Download the latest .dmg file

  2. Open the .dmg and drag Supervertaler to your Applications folder

  3. 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).

If you skip the Java step, Supervertaler shows a friendly dialog at startup with the install command. Plain-text translation, TMX, termbases, 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.

:::note 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:

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:

  1. Set up your API keys for AI translation

Last updated