Skip to content

Installation

  • A 64-bit operating system (macOS, Linux, or Windows 10+)
  • A terminal / command prompt
  • (Optional) Git, if you want to build from source

The fastest way to get Zap is with the official install script:

Terminal window
curl -fsSL https://get.zaplang.dev | sh
Terminal window
irm https://get.zaplang.dev/install.ps1 | iex

This installs the zap binary to ~/.zap/bin and adds it to your PATH.

If you prefer to build Zap yourself:

Terminal window
git clone https://github.com/your-org/zap.git
cd zap
make install

Note: Building from source requires a C compiler (gcc or clang) and make.

Terminal window
zap --version

You should see output like:

zap 0.1.0 (2026-07-14)

Zap has first-class support for popular editors:

Editor Extension / Plugin
VS Code zap-lang.vscode-zap
Neovim nvim-zap via your plugin manager
IntelliJ IDEA Zap plugin from JetBrains Marketplace

With Zap installed, head to Hello World to write your first program.