| title | Installation | |||||||
|---|---|---|---|---|---|---|---|---|
| description | Install Fallow via npx, npm, pnpm, yarn, cargo, or a prebuilt binary. Binaries for macOS, Linux, and Windows. | |||||||
| keywords |
|
|||||||
| icon | download |
The fastest way to try Fallow is to run it directly:
npx fallowIf you use Fallow often, install it globally.
Prebuilt binaries for macOS, Linux, and Windows. No Rust toolchain required.```bash
npm install -g fallow
```
<Tip>
The npm package uses `optionalDependencies` to download the correct platform binary automatically.
</Tip>
```bash
cargo install fallow-cli
```
| Target | Platform |
|:-------|:---------|
| `fallow-aarch64-apple-darwin.tar.gz` | macOS Apple Silicon |
| `fallow-x86_64-apple-darwin.tar.gz` | macOS Intel |
| `fallow-x86_64-unknown-linux-gnu.tar.gz` | Linux x64 (glibc) |
| `fallow-aarch64-unknown-linux-gnu.tar.gz` | Linux ARM64 (glibc) |
| `fallow-x86_64-unknown-linux-musl.tar.gz` | Linux x64 (musl) |
| `fallow-aarch64-unknown-linux-musl.tar.gz` | Linux ARM64 (musl) |
| `fallow-x86_64-pc-windows-msvc.zip` | Windows x64 |
fallow --versionGo to the Quick start and run your first analysis.