Windows

Installer (MSI)

Use this installer to conveniently install Zeal like any other app.

64-bit MSI

Portable

This is a special build intended for use without installation. All settings and docsets are stored in the application directory.

64-bit 7Z 64-bit ZIP

Chocolatey

Chocolatey is a package manager for Windows.

To install Zeal, run:

choco install zeal

Alternatively you can install the portable version:

choco install zeal.portable

Scoop

Scoop is a command-line installer for Windows.

First you need to enable the extras bucket, if you haven't already:

scoop bucket add extras

To install Zeal, run the following command:

scoop install zeal

Scoop can also install Visual C++ 2015 Redistributable:

scoop install vcredist2015

CI builds

In addition to the stable builds, a continuous integration system automatically publishes prebuilt artifacts on each push to the main repository.

These builds can be useful for testing unreleased changes, but are not intended for daily use, and are likely to crash more often than stable releases.

To download a build artifact, open the workflow run for the change you want to test, then download the archive for your target platform from the Artifacts section at the bottom of the run summary.

View CI build history

Linux

Prebuilt packages are provided for a variety of Linux distributions. Some of the packages are maintained by Zeal developers, while others are courtesy of independent contributors.

Distribution Independent

Get it on Flathub Get it from the Snap Store

ALT Linux

Install Zeal from the official repositories:

apt-get install zeal
View ALT Linux packages

Arch Linux

Arch Linux users can either install Zeal from the extra repository:

sudo pacman -Syu zeal

Or use the zeal-git AUR package which builds unstable source code from our Git repository.

View zeal-git in AUR

CentOS Stream, RHEL, and Derivatives

On Enterprise Linux 9 and 10 (CentOS Stream, RHEL, AlmaLinux, Rocky Linux, etc.) install Zeal from our COPR. Enable the EPEL repository first, since Zeal depends on packages from it:

sudo dnf install epel-release
sudo dnf copr enable @zealdocs/zeal
sudo dnf install zeal

Note for RHEL: the epel-release package is not available in the official repositories. Follow the EPEL Getting Started guide to enable EPEL on RHEL.

To try the latest features before they are released, use the nightly COPR instead:

sudo dnf copr enable @zealdocs/zeal-nightly
sudo dnf install zeal

View stable COPR View nightly COPR

Debian

Install Zeal from the official repositories:

sudo apt install zeal
View Debian packages

Fedora

Install Zeal from the official Fedora software repositories.

sudo dnf install zeal

When the official package is outdated, our COPR provides up-to-date stable releases:

sudo dnf copr enable @zealdocs/zeal
sudo dnf install zeal

To try the latest features before they are released, use the nightly COPR instead:

sudo dnf copr enable @zealdocs/zeal-nightly
sudo dnf install zeal

View Fedora package View stable COPR View nightly COPR

Gentoo

Install the official Zeal package for Gentoo:

emerge app-text/zeal
View Gentoo package

openSUSE

Zeal is part of the official openSUSE software repositories.

View openSUSE package

Slackware

Build and install Zeal from SlackBuilds.org.

View SlackBuilds.org

Ubuntu

Install Zeal from the official repositories:

sudo apt install zeal

When the official package is outdated, our PPA provides up-to-date stable releases:

sudo add-apt-repository ppa:zealdocs
sudo apt install zeal

To try the latest features before they are released, use the nightly PPA instead:

sudo add-apt-repository ppa:zealdocs/nightly
sudo apt install zeal

View Ubuntu packages View stable PPA View nightly PPA

BSD

FreeBSD

Install Zeal from ports:

cd /usr/ports/devel/zeal/ && make install clean

Or install Zeal binary package:

pkg install zeal
View FreeBSD Ports View FreshPorts

OpenBSD

Install Zeal with:

doas pkg_add zeal
View OpenBSD Ports

Source code

Complete source code is available on GitHub. To build Zeal follow the instructions in the README.md file.

Go to GitHub