Installation

Install the Lift CLI with a single command. Supports Linux and macOS on x86_64 and ARM64.

Installation

curl -fsSL https://get.onelift.io/install.sh | sh

This will automatically detect your OS and architecture, download the correct binary, verify the checksum, and install to /usr/local/bin/lift.

Download Binary

Download pre-built binaries directly:

PlatformArchitectureDownload
Linuxx86_64lift-linux-amd64
LinuxARM64lift-linux-arm64
macOSIntellift-darwin-amd64
macOSApple Siliconlift-darwin-arm64
# Manual download example (Linux x86_64)
curl -fsSL -o /usr/local/bin/lift https://get.onelift.io/latest/lift-linux-amd64
chmod +x /usr/local/bin/lift

Specific Version

# Install a specific version
LIFT_VERSION=0.1.0 curl -fsSL https://get.onelift.io/install.sh | sh

# Or download directly
curl -fsSL -o /usr/local/bin/lift https://get.onelift.io/v0.1.0/lift-linux-amd64
chmod +x /usr/local/bin/lift

Custom Install Directory

LIFT_DIR=/opt/bin curl -fsSL https://get.onelift.io/install.sh | sh

Verify Installation

lift version
# lift v0.1.0 (darwin/arm64) built 2026-02-21 commit abc1234