Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 1.79 KB

File metadata and controls

76 lines (59 loc) · 1.79 KB
title Installation
description Install Fallow via npx, npm, pnpm, yarn, cargo, or a prebuilt binary. Binaries for macOS, Linux, and Windows.
keywords
fallow install
npx fallow
npm
pnpm
yarn
cargo
binary
icon download

The fastest way to try Fallow is to run it directly:

npx fallow

If 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 pnpm add -g fallow ``` ```bash yarn global add fallow ``` Use this if you already have a Rust toolchain.
```bash
cargo install fallow-cli
```
Download prebuilt binaries from [GitHub Releases](https://github.com/fallow-rs/fallow/releases).
| 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 |

Verify

fallow --version
If you see a version number, you're all set.

Next step

Go to the Quick start and run your first analysis.