Installation

Download and install Dora on macOS, Windows, and Linux, or build it from source.

Installation

Dora is a native desktop application built with Tauri. Download a prebuilt installer for your platform, install from the Arch User Repository, or build it from source.

The fastest path is the downloads page, which always points at the latest release assets:

Get the latest build at doradb.app/downloads, or browse every asset on the GitHub releases page.

Platform matrix

PlatformArchitecturesPackageHow to get it
macOSApple Silicon, Intel.dmgDownloads or GitHub releases
Windowsx64.exe, .msiDownloads or GitHub releases
Linuxx64.AppImage, .deb, .rpm, .snap, .tar.gzDownloads or GitHub releases
Arch Linuxx64AURyay -S dora

macOS

  1. Download the DMG that matches your chip: Apple Silicon (M1 and newer) or Intel. If you are unsure, click the Apple menu and check "About This Mac".
  2. Open the DMG and drag Dora into your Applications folder.
  3. Launch Dora from Applications.
If macOS reports that Dora "cannot be opened because the developer cannot be verified", right-click the app and choose Open, then confirm. This only needs to be done on first launch.

Windows

  1. Download the Windows EXE setup installer (recommended) or the MSI package for managed deployments.
  2. Run the installer. If SmartScreen warns about an unrecognized app, choose More info then Run anyway.
  3. Launch Dora from the Start menu.

Linux

Pick the package that fits your distribution:

PackageInstall command
AppImagechmod +x Dora_*.AppImage && ./Dora_*.AppImage
Debian / Ubuntusudo dpkg -i dora_*.deb
Fedora / RHELsudo rpm -i dora-*.rpm
Snapsudo snap install dora
Archivetar -xzf dora_*.tar.gz and run the extracted binary

Arch Linux (AUR)

Dora is published to the AUR as dora as a prebuilt binary. Install it with any AUR helper:

yay -S dora
# or
paru -S dora

Verify the install

Launch Dora and open Settings → About to confirm the version matches the release you downloaded. On Linux you can also check the binary:

dora --version

Build from source

To build Dora yourself you need the Rust toolchain (cargo) and Node.js with pnpm.

Building from source produces an unsigned binary intended for development. For day-to-day use, prefer a prebuilt release.
  1. Clone the repository:

    git clone https://github.com/remcostoeten/dora.git
  2. Install dependencies:

    pnpm install
  3. Run the desktop app:

    pnpm desktop:dev
  4. Run these docs locally:

    pnpm docs:dev