Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/anil-matcha/open-generative-ai/llms.txt

Use this file to discover all available pages before exploring further.

Open Generative AI offers three deployment paths to match different use cases. Download the desktop app for a no-setup, one-click install on macOS, Windows, or Linux. Use Docker to run a containerized production build on any server or home lab. Or build from source to produce custom production binaries or run the Next.js web server directly — useful for contributors, CI pipelines, and environments where you want full control over the build.
The desktop app is the recommended option for individual users. It requires no Node.js, no terminal, and no configuration — just download, install, and generate.

Downloads

PlatformDownload
macOS Apple Silicon (M1/M2/M3/M4)Open Generative AI-1.0.9-arm64.dmg
macOS Intel (x64)Open Generative AI-1.0.9.dmg
Windows (x64)Open Generative AI Setup 1.0.9.exe
Linux (Ubuntu x64).AppImage / .deb from the v1.0.9 release
All releases: github.com/Anil-matcha/Open-Generative-AI/releases

macOS Installation

Because the app is not notarized by Apple, macOS Gatekeeper will block it on first launch. Follow these steps to open it:Step 1 — Mount the .dmg and drag Open Generative AI to /Applications.Step 2 — Open Terminal and run:
xattr -cr "/Applications/Open Generative AI.app"
Step 3 — Right-click the app in /Applications → click Open → click Open again on the dialog.
You only need to do this once. After the first launch the app opens normally like any other application.
Alternative (no Terminal):
  1. Try to open the app — macOS will show a blocked dialog.
  2. Go to System Settings → Privacy & Security.
  3. Scroll down to find “Open Generative AI was blocked”.
  4. Click Open AnywayOpen.

Windows Installation

Windows SmartScreen may display a warning because the installer is not code-signed.
  1. Click More info on the SmartScreen dialog.
  2. Click Run anyway.
The app installs silently to %LocalAppData% and adds a Start Menu shortcut.

Linux Installation

AppImage

Make the AppImage executable and run it directly:
chmod +x "Open Generative AI-1.0.9.AppImage"
./"Open Generative AI-1.0.9.AppImage"
If the AppImage fails to start on older systems, install libfuse2:
sudo apt install libfuse2

.deb Package

Install the .deb on Debian or Ubuntu:
sudo apt install ./open-generative-ai_1.0.9_amd64.deb

Ubuntu 24.04+ — AppArmor sandbox restriction

Ubuntu 24.04 and later enforce a kernel security policy (apparmor_restrict_unprivileged_userns) that blocks Chromium’s user-namespace sandbox. If the app fails to start silently or crashes immediately, use one of the following fixes:
Option B makes a system-wide change. Prefer Option A (the .deb package) whenever possible — it ships an AppArmor profile that grants the required permission automatically without any system-wide modification.
Option A — Recommended: Install the .deb package instead of the AppImage. The .deb ships with an AppArmor profile that grants the required permission on install automatically.Option B — Temporary fix (AppImage users):
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
This setting resets on next reboot. To make it permanent:
echo 'kernel.apparmor_restrict_unprivileged_userns=0' | sudo tee /etc/sysctl.d/99-userns.conf

Build docs developers (and LLMs) love