Installation
Install the Lift CLI with a single command. Supports Linux and macOS on x86_64 and ARM64.
Installation
Quick Install (Recommended)
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:
| Platform | Architecture | Download |
|---|---|---|
| Linux | x86_64 | lift-linux-amd64 |
| Linux | ARM64 | lift-linux-arm64 |
| macOS | Intel | lift-darwin-amd64 |
| macOS | Apple Silicon | lift-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