L Loach Docs
Ctrl K

Installation

Loach ships as a native desktop app for Windows, Linux and macOS. Install from a pre-built package, or build from source.

Windows Linux macOS MIT licensed

Install from a pre-built package

With every stable release the project publishes ready-to-install packages for each supported operating system:

Head over to the GitHub releases page and download the file that matches your platform.

Download the latest release →

Heads up

To use local models, make sure Ollama is installed and running (ollama serve). If you don't have any models pulled yet, Loach will offer to install one during onboarding.

Windows

  1. Download the .exe from the latest release.
  2. Run the installer and follow the prompts.
  3. Launch Loach from the Start menu.

WebView2 is required and is pre-installed on Windows 11. On Windows 10 the installer will pull it in if it's missing.

Linux

Pick the package format for your distribution:

# Debian / Ubuntu
sudo apt install ./loach_*.deb

# Fedora / RHEL
sudo dnf install ./loach-*.rpm

# Any distro
chmod +x Loach-*.AppImage
./Loach-*.AppImage

macOS

  1. Download the .dmg from the latest release.
  2. Open it and drag Loach into Applications.
  3. The first time you launch Loach, macOS will show a Gatekeeper warning because the build is not Apple-notarized. Open System Settings → Privacy & Security, scroll to the bottom and click Open Anyway. You only have to do this once.

Only Apple Silicon (M1 / M2 / M3 / M4) is supported. Intel Macs are not.

Build from source

If you want the bleeding edge or you're contributing patches, build from the repository.

Prerequisites

Clone and install

git clone https://github.com/ztcs-software/loach.git
cd loach
npm install

Run in development

npm run tauri dev

The Vite dev server runs on http://localhost:1420 and the Tauri shell embeds it.

Build production installers

npm run tauri build

Outputs land in src-tauri/target/release/bundle/:

Updates

We regularly update Loach to deliver new features, bug fixes, security improvements, and performance gains. When a new version is available, you can apply it directly from the app in Settings → Updates. See OTA updates for details.