-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Antoinegtir edited this page May 20, 2026
·
1 revision
| 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+ |
npx @antoinegtir/flutter-cliThis 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).
npm install -g @antoinegtir/flutter-cli
flutter-clicurl -fsSL https://raw.githubusercontent.com/Antoinegtir/flutter-cli/master/install.sh | shThe script detects your OS/arch, downloads the matching binary from the latest GitHub Release, places it in ~/.local/bin, and prints next steps.
- Go to Releases.
- 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 |
- Extract and place the
flutter-cli(orflutter-cli.exe) binary somewhere on yourPATH.
git clone https://github.com/Antoinegtir/flutter-cli.git
cd flutter-cli
cargo build --release -p fl-cli
# Binary at: target/release/flutter-cliRequires Rust 1.82+. Install via rustup.rs.
flutter-cli --versionExpected output: flutter-cli 0.1.0 (or newer).
→ Quick Start — run your first multi-device session.