Download & Install
Download Ghost
Section titled “Download Ghost”Download the latest release from GitHub Releases. No Ollama, no GPU, no internet required after first launch.
Desktop
Section titled “Desktop”| Platform | Download | Details |
|---|---|---|
| Windows x64 | ghost_x.x.x_x64-setup.exe | NSIS installer · No admin required · WebView2 auto-bootstrap |
| macOS Apple Silicon | ghost_x.x.x_aarch64.dmg | M1/M2/M3/M4 · DMG with drag-to-install |
| macOS Intel | ghost_x.x.x_x64.dmg | Intel-based Macs · macOS 10.15+ |
| Linux DEB | ghost_x.x.x_amd64.deb | Debian · Ubuntu · Pop!_OS · Mint |
| Linux RPM | ghost_x.x.x_x86_64.rpm | Fedora · RHEL · CentOS · openSUSE |
| Linux Universal | ghost_x.x.x_amd64.AppImage | Any distro · No install needed |
Mobile
Section titled “Mobile”| Platform | Download | Details |
|---|---|---|
| Android ARM64 | Ghost_x.x.x_android-aarch64.apk | Min SDK 24 · Tauri v2 WebView |
| iOS | Coming soon | xcarchive ready · Requires macOS build |
Linux Quick Install
Section titled “Linux Quick Install”# Debian/Ubuntuwget https://github.com/ghostapp-ai/ghost/releases/latest/download/ghost_0.11.0_amd64.debsudo dpkg -i ghost_0.11.0_amd64.deb
# Fedora/RHELwget https://github.com/ghostapp-ai/ghost/releases/latest/download/ghost_0.11.0_x86_64.rpmsudo rpm -i ghost_0.11.0_x86_64.rpm
# AppImage (any distro)wget https://github.com/ghostapp-ai/ghost/releases/latest/download/ghost_0.11.0_amd64.AppImagechmod +x ghost_0.11.0_amd64.AppImage./ghost_0.11.0_amd64.AppImageBuild from Source
Section titled “Build from Source”Prerequisites
Section titled “Prerequisites”- Rust (latest stable)
- Bun >= 1.0 (or Node.js >= 18)
- Platform-specific Tauri v2 dependencies (see guide)
- Ollama (optional — Ghost uses native AI by default)
# Clone the repogit clone https://github.com/ghostapp-ai/ghost.gitcd ghost
# Install frontend dependenciesbun install
# Run in development mode# (native AI model downloads on first run, ~23MB)bun run tauri devBuild for Production
Section titled “Build for Production”# Desktop (Windows, macOS, or Linux — auto-detected)bun run tauri build
# Android (requires Android SDK + NDK 27+)bun run tauri android build --target aarch64The desktop installer will be generated in src-tauri/target/release/bundle/.
Optional: Ollama for Higher-Quality Models
Section titled “Optional: Ollama for Higher-Quality Models”# Higher-quality 768D embeddings (vs 384D native)ollama pull nomic-embed-text
# Agent reasoning model (for tool calling)ollama pull qwen3:8bSystem Requirements
Section titled “System Requirements”| Requirement | Minimum | Recommended |
|---|---|---|
| RAM | 2 GB | 8 GB+ (for larger chat models) |
| Storage | 100 MB | 500 MB+ (with AI models) |
| OS | Windows 10, macOS 10.15, Ubuntu 20.04 | Latest versions |
| CPU | Any x86_64 or ARM64 | AVX2/NEON SIMD support |
| GPU | Not required | CUDA/Metal for faster inference |
First Launch
Section titled “First Launch”On first launch, Ghost will:
- Show an onboarding wizard with hardware detection
- Download the native AI model (~23MB) — requires internet once
- Auto-discover your Documents, Desktop, Downloads, and Pictures folders
- Start indexing files in the background
Subsequent launches are instant (<500ms) with the cached model.