Skip to content

Installation

Rush is a native macOS binary built with Swift. It requires macOS 14 (Sonoma) or later and has no runtime dependencies — no Node.js, no Homebrew formulae chain.

Terminal window
brew install rush-pm/tap/rush

Verify the installation:

Terminal window
rush --version

If you’d prefer to build Rush yourself, you’ll need Swift 6.2+ and Xcode Command Line Tools.

Terminal window
git clone https://github.com/rush-pm/rush
cd rush
swift build -c release

Then copy the binary somewhere on your $PATH:

Terminal window
cp .build/release/rush /usr/local/bin/rush

Rush ships with completion scripts for common shells.

Terminal window
rush --generate-completion-script zsh > ~/.zsh/completions/_rush
Terminal window
rush --generate-completion-script bash >> ~/.bash_completion

Next: Quick Start