Skip to main content

Installation

ZeroLimit is available for Windows, macOS, and Linux. Choose your platform below to get started.
All releases are available on the GitHub Releases page.

Windows

ZeroLimit offers multiple installation options for Windows users:

NSIS Installer (Recommended)

Full installer with automatic updates and Start Menu integration

MSI Installer

Standard Windows Installer package for enterprise deployments

Portable Executable

Run directly without installation - perfect for USB drives

Download Options

1

Choose Your Architecture

Download the appropriate installer from Releases:
  • ZeroLimit_x.x.x_x64-setup.exe - NSIS installer for 64-bit systems
  • ZeroLimit_x.x.x_arm64-setup.exe - NSIS installer for ARM64 systems
  • ZeroLimit_x.x.x_x64_en-US.msi - MSI installer for 64-bit systems
  • ZeroLimit_x.x.x_portable.exe - Portable executable (no installation required)
2

Run the Installer

Double-click the downloaded file and follow the installation wizard.
The NSIS installer will automatically create Start Menu shortcuts and register the application for auto-updates.
3

Launch ZeroLimit

Find ZeroLimit in your Start Menu or desktop shortcut and launch the application.

System Requirements

  • Windows 10 or later (64-bit or ARM64)
  • 200 MB free disk space
  • Internet connection for initial setup and updates

macOS

ZeroLimit supports both Apple Silicon and Intel-based Macs.

Download Options

Download ZeroLimit_x.x.x_aarch64.dmg for Apple Silicon processors.

Installation Steps

1

Download the DMG

Get the appropriate DMG file from Releases based on your Mac’s processor.
2

Open the DMG

Double-click the downloaded DMG file to mount it.
3

Drag to Applications

Drag the ZeroLimit app icon to your Applications folder.
4

Handle Security Warning

The app is not signed with an Apple Developer certificate. macOS may block the first launch.
If macOS prevents you from opening the app, run this command in Terminal:
xattr -cr /Applications/ZeroLimit.app
Then try launching the app again from your Applications folder.

System Requirements

  • macOS 11 (Big Sur) or later
  • Apple Silicon or Intel processor
  • 200 MB free disk space

Linux

ZeroLimit provides native packages for major Linux distributions.

Debian/Ubuntu

.deb package for Debian-based distributions

Fedora/RHEL

.rpm package for Red Hat-based distributions

Universal

.AppImage for any Linux distribution

Debian/Ubuntu Installation

1

Download DEB Package

Download ZeroLimit_x.x.x_amd64.deb from Releases.
2

Install with APT

sudo apt install ./ZeroLimit_x.x.x_amd64.deb
3

Launch Application

zerolimit
Or find ZeroLimit in your application menu.

Fedora/RHEL Installation

1

Download RPM Package

Download ZeroLimit_x.x.x_x86_64.rpm from Releases.
2

Install with DNF

sudo dnf install ./ZeroLimit_x.x.x_x86_64.rpm
Or on older systems using yum:
sudo yum install ./ZeroLimit_x.x.x_x86_64.rpm
3

Launch Application

zerolimit

AppImage (Universal)

AppImage works on any Linux distribution without installation.
1

Download AppImage

Download ZeroLimit_x.x.x_amd64.AppImage from Releases.
2

Make Executable

chmod +x ZeroLimit_x.x.x_amd64.AppImage
3

Run Application

./ZeroLimit_x.x.x_amd64.AppImage

System Requirements

  • Any modern Linux distribution (64-bit)
  • 200 MB free disk space
  • GTK 3.x or later (for .deb and .rpm packages)

Building from Source

If you prefer to build ZeroLimit from source:
1

Clone Repository

git clone https://github.com/0xtbug/zero-limit.git
cd zero-limit
2

Install Dependencies

Requires Node.js 20+ and pnpm 10+:
pnpm install
3

Development Build

Run the app in development mode:
pnpm run tauri dev
4

Production Build

Build the production binary:
pnpm run tauri build
The built application will be in src-tauri/target/release/.

Build Requirements

  • Node.js: 20 or later
  • pnpm: 10.22.0 or later
  • Rust: Latest stable version
  • Platform-specific dependencies:
    • Windows: Visual Studio Build Tools
    • macOS: Xcode Command Line Tools
    • Linux: Development libraries (webkit2gtk, libssl-dev, etc.)
Refer to the Tauri Prerequisites Guide for detailed build environment setup instructions.

Next Steps

Now that you have ZeroLimit installed, proceed to the Quick Start Guide to configure and start using the application.

Build docs developers (and LLMs) love