Installation
Install Fatima with the CDN install script.
Install or update the Fatima CLI with the install script.
macOS/Linux:
curl -fsSL https://cdn.fatima.dev/install | bash
Windows PowerShell:
irm https://cdn.fatima.dev/install.ps1 | iex
The installer provides the fatima binary. After installation, verify that it is available in your shell:
fatima --help
Pinned install
If you need a specific release, pass the version explicitly.
macOS/Linux:
curl -fsSL https://cdn.fatima.dev/install | bash -s -- --version 1.0.0
Windows PowerShell:
& { $(irm https://cdn.fatima.dev/install.ps1) } -Version 1.0.0
Replace 1.0.0 with the version you want to pin.
JavaScript package
Install the JavaScript bindings only when you want to call Fatima from Node.js code:
pnpm add @fatima.dev/js
The JavaScript package is ESM-only and targets Node.js 18 or newer.
Rust crates
Use the Rust crates when Fatima is part of a Rust application or tool:
[dependencies]
fatima-core = "0.0.1"
Most projects only need the CLI.