Skip to main content

Installation

brew install keywaysh/tap/keyway

Native binary — fast startup, no dependencies.

Works on macOS and Linux.

Shell Script

curl -fsSL https://keyway.sh/install.sh | sh

Downloads the binary to /usr/local/bin/keyway.

Windows

Download keyway-win-x64.exe from GitHub Releases, rename to keyway.exe, and add to your PATH.

npm

If you prefer npm (requires Node.js):

npm install -g @keywaysh/cli

Also works with pnpm, yarn, or bun.

Why Homebrew over npm?

The Homebrew version is a native Go binary — no Node.js required, ~10x faster startup. Use npm only if you don't have Homebrew.

Manual Download

Pre-built binaries for all platforms:

PlatformArchitectureDownload
macOSApple Siliconkeyway-darwin-arm64
macOSIntelkeyway-darwin-x64
Linuxx64keyway-linux-x64
LinuxARM64keyway-linux-arm64
Windowsx64keyway-win-x64.exe

Download from GitHub Releases.

Verify Installation

keyway --version

Updating

# Homebrew
brew upgrade keyway

# npm
npm update -g @keywaysh/cli

Next Steps