UmiUmi

Installation

Step-by-step guide to installing the Umi Network binary on macOS, Linux, and Windows.

Install

Installation Guide

Aptos CLI Installation

Download Binary

You can download the latest Aptos binary from the Aptos GitHub Releases page. The binary is available for macOS, Linux, and Windows.

Install using Shell Script (macOS / Linux)

You can install the Aptos CLI using the official install script:

curl -fsSL "https://aptos.dev/scripts/install_cli.sh" | sh

If you're using a non-SIMD-compatible CPU, use:

curl -fsSL "https://aptos.dev/scripts/install_cli.sh" | sh -s -- --generic-linux

Install using PowerShell (Windows)

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
iwr https://aptos.dev/scripts/install_cli.ps1 | iex

Install using Package Managers (Windows)

  • Chocolatey:

    choco install aptos
  • Scoop:

    scoop install https://aptos.dev/scoop/aptos.json
  • Winget:

    winget install aptos

Verify Installation

After installation, verify the CLI is working:

aptos help

On this page