Build Aptos CLI from Source Code
If you are an advanced user and would like to build the CLI binary by downloading the source code, follow the below steps. This is not recommended unless you are on a platform unsupported by the prebuilt binaries. Otherwise, install the prebuilt CLI binaries to ease ramp up and reduce variables in your environment.
Aptos offers the dev_setup.sh
script for establishing your development environment. This script currently supports macOS and Ubuntu Linux with other Linux distributions working but untested. The script does not support Windows. See the instructions below to manually install necessary dependencies on Windows.
macOS
macOS
Setup dependencies
> Using the automated script
- If on Mac, ensure you have
brew
installed https://brew.sh/ - Ensure you have
git
installed https://git-scm.com/book/en/v2/Getting-Started-Installing-Git. - Clone the Aptos core repo:
git clone https://github.com/aptos-labs/aptos-core.git
. - Change directory into
aptos-core
:cd aptos-core
- Run the dev setup script to prepare your environment:
./scripts/dev_setup.sh
- Update your current shell environment:
source ~/.cargo/env
.
> Manual installation of dependencies
If the script above doesn't work for you, you can install these manually, but it's not recommended.
Building the Aptos CLI
- Checkout the correct branch
git checkout --track origin/<branch>
, where<branch>
is:devnet
for building on the Aptos devnet.testnet
for building on the Aptos testnet.main
for the current development branch.
- Build the CLI tool:
cargo build --package aptos --release
. - The binary will be available in at
target/release/aptos
- (Optional) Move this executable to a place on your path e.g.
~/bin/aptos
. - You can now get help instructions by running
~/bin/aptos help
Linux
Linux
Setup dependencies
> Using the automated script
- If on Mac, ensure you have
brew
installed https://brew.sh/ - Ensure you have
git
installed https://git-scm.com/book/en/v2/Getting-Started-Installing-Git. - Clone the Aptos core repo:
git clone https://github.com/aptos-labs/aptos-core.git
. - Change directory into
aptos-core
:cd aptos-core
- Run the dev setup script to prepare your environment:
./scripts/dev_setup.sh
- Update your current shell environment:
source ~/.cargo/env
> Manual installation of dependencies
If the script above does not work for you, you can install these manually, but it is not recommended:
Building the Aptos CLI
- Checkout the correct branch
git checkout --track origin/<branch>
, where<branch>
is:devnet
for building on the Aptos devnet.testnet
for building on the Aptos testnet.main
for the current development branch.
- Build the CLI tool:
cargo build --package aptos --release
. - The binary will be available in at
target/release/aptos
- (Optional) Move this executable to a place on your path e.g.
~/bin/aptos
. - You can now get help instructions by running
~/bin/aptos help
Windows
Windows
Setup dependencies
The aptos-core codebase currently has no script similar to the dev_setup.sh
script for
Windows. All dependencies must be manually installed.
> Manual installation of dependencies
If on Windows, you must install these manually:
- Rust.
- Git.
- CMake.
- For Windows ARM, Visual Studio Preview.
- C++ build tools for Windows.
- LLVM.
Building aptos-core
- Checkout the correct branch
git checkout --track origin/<branch>
, where<branch>
is:devnet
for building on the Aptos devnet.testnet
for building on the Aptos testnet.main
for the current development branch.
- Build the CLI tool:
cargo build --package aptos --release
. - The binary will be available at -
target\release\aptos.exe
- You can now get help instructions by running
target\release\aptos.exe
in a Powershell window.