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
-
Đảm bảo là bạn đã cài đặt
Brew
: https://brew.sh/ (opens in a new tab) -
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)"
-
Đả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
-
-
Open một terminal mới và chạy theo lệnh sau
brew update brew install aptos
-
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
-
Đảm bảo đã cài đặt
-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
libssl-dev (opens in a new tab) and libclang-dev (opens in a new tab)
-
Clone Repo Aptos-core bằng terminal
git clone https://github.com/aptos-labs/aptos-core.git
-
Đi vào trong repo aptos-core bằng terminal
cd aptos-core
-
Chạy lệnh terminal bên dưới để setup môi trường cài đặt cho aptos.
./scripts/dev_setup.sh
-
Update môi trường shell (shell environment)
source ~/.cargo/env
Windows
-
Đảm bảo đã cài đặt
-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
Install Microsoft Visual studio build tools for Windows (opens in a new tab)
-
Nếu bạn không cài Microsoft Visual studio build tools for Windows thì cài Cmake (opens in a new tab)
-
Clone Repo Aptos-core bằng terminal
git clone https://github.com/aptos-labs/aptos-core.git
-
Đi vào trong repo aptos-core bằng terminal
cd aptos-core
-
Open Powershell Terminal bằng quyền administrator & chạy lệnh bên dưới
-
Option 1
PowerShell -ExecutionPolicy Bypass -File ./scripts/windows_dev_setup.ps1
-
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
- Sau khi cài đặt thì file binary sẽ được được tạo ra ở:
-
End