Skip to content

Installation

Antoinegtir edited this page May 20, 2026 · 1 revision

Installation

Requirements

Requirement Minimum version
Flutter SDK 3.0
Dart SDK 3.0 (bundled with Flutter)
Android adb any (for Android devices)
Xcode / ios-deploy 14+ (for iOS devices)
OS macOS 12+, Linux, Windows 10+

Option 1 — npx (no install required)

npx @antoinegtir/flutter-cli

This downloads the correct native binary for your platform on first run and caches it in the npm prefix. Works on macOS, Linux, and Windows (Git Bash / WSL).

Option 2 — npm global install

npm install -g @antoinegtir/flutter-cli
flutter-cli

Option 3 — curl one-liner (macOS / Linux)

curl -fsSL https://raw.githubusercontent.com/Antoinegtir/flutter-cli/master/install.sh | sh

The script detects your OS/arch, downloads the matching binary from the latest GitHub Release, places it in ~/.local/bin, and prints next steps.

Option 4 — Download binary manually

  1. Go to Releases.
  2. Download the archive for your platform:
Platform File
macOS Apple Silicon flutter-cli-aarch64-apple-darwin.tar.gz
macOS Intel flutter-cli-x86_64-apple-darwin.tar.gz
Linux x86_64 flutter-cli-x86_64-unknown-linux-gnu.tar.gz
Linux ARM64 flutter-cli-aarch64-unknown-linux-gnu.tar.gz
Windows x86_64 flutter-cli-x86_64-pc-windows-msvc.zip
Windows ARM64 flutter-cli-aarch64-pc-windows-msvc.zip
  1. Extract and place the flutter-cli (or flutter-cli.exe) binary somewhere on your PATH.

Option 5 — Build from source (Rust)

git clone https://github.com/Antoinegtir/flutter-cli.git
cd flutter-cli
cargo build --release -p fl-cli
# Binary at: target/release/flutter-cli

Requires Rust 1.82+. Install via rustup.rs.


Verify the install

flutter-cli --version

Expected output: flutter-cli 0.1.0 (or newer).


Next step

Quick Start — run your first multi-device session.

Clone this wiki locally