Install Aptos CLI

Install Aptos

MacOs

Với MacOs, đây là Os có cách cài đặt Aptos CLI đơn giản nhất với việc sử dụng Package Manager brew

Cài đặt

  1. Đảm bảo là bạn đã cài đặt Brew: https://brew.sh/ (opens in a new tab)

  2. Nếu chưa hãy cài đặt bằng lệnh sau trên terminal

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Đảm bảo là bạn đã cài đặt xcode (Môi trường lập trình trên macos)

    • Chạy lệnh bên dưới nếu bạn chưa cài đặt

      xcode-select --install
  4. Open một terminal mới và chạy theo lệnh sau

    brew update
    brew install aptos
  5. Sau khi cài đặt xong thì hãy thử chạy lệnh sau để đảm bảo bạn đã cài đặt thành công

    aptos help
    • Đây là kết quả

      Command Line Interface (CLI) for developing and interacting with the Aptos blockchain
      
      Usage: aptos <COMMAND>
      
      Commands:
        account     Tool for interacting with accounts
        config      Tool for interacting with configuration of the Aptos CLI tool
        genesis     Tool for setting up an Aptos chain Genesis transaction
        governance  Tool for on-chain governance
        info        Show build information about the CLI
        init        Tool to initialize current directory for the aptos tool
        key         Tool for generating, inspecting, and interacting with keys
        move        Tool for Move smart contract related operations
        multisig    Tool for interacting with multisig accounts
        node        Tool for operations related to nodes
        stake       Tool for manipulating stake and stake pools
        update      Update the CLI or other tools it depends on
        help        Print this message or the help of the given subcommand(s)
      
      Options:
        -h, --help     Print help
        -V, --version  Print version

Nâng cấp version thường xuyên với CLI

brew update
brew upgrade aptos

Linux (Build from source) - Cũng hoạt động trên MacOs

  1. Đảm bảo đã cài đặt

  2. Clone Repo Aptos-core bằng terminal

    git clone https://github.com/aptos-labs/aptos-core.git
  3. Đi vào trong repo aptos-core bằng terminal

    cd aptos-core
  4. Chạy lệnh terminal bên dưới để setup môi trường cài đặt cho aptos.

    ./scripts/dev_setup.sh
  5. Update môi trường shell (shell environment)

    source ~/.cargo/env

Windows

  1. Đảm bảo đã cài đặt

  2. Clone Repo Aptos-core bằng terminal

    git clone https://github.com/aptos-labs/aptos-core.git
  3. Đi vào trong repo aptos-core bằng terminal

    cd aptos-core
  4. Open Powershell Terminal bằng quyền administrator & chạy lệnh bên dưới

    1. Option 1

      PowerShell -ExecutionPolicy Bypass -File ./scripts/windows_dev_setup.ps1
    2. Option 2

      cargo build --package aptos --profile cli
      • Sau khi cài đặt thì file binary sẽ được được tạo ra ở: target\cli\aptos.exe

End