Skip to content

Install the Aptos CLI on Linux

For Linux, the easiest way to install the Aptos CLI tool is via shell script, although if that does not work, you can also install manually via downloading pre-compiled binaries. The pre-compiled binaries approach is not generally recommended as updating is very manual.

  1. In the terminal, use one of the following commands:

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

    Or use the equivalent wget command:

    Terminal window
    wget -qO- "https://aptos.dev/scripts/install_cli.sh" | sh
  2. (Optional) It can be helpful to add the Aptos CLI to a folder in your PATH, or to add it to your PATH directly.

    • The steps to add a folder to your PATH are shell dependent.
    • You can run echo $SHELL to print the default shell for your machine, then google specific steps to add a folder to your PATH for that shell.
  3. Verify the script is installed by opening a new terminal and running aptos help

    • You should see a list of commands you can run using the CLI.
    • In the future, this is a helpful resource to learn exactly how each command works.
Terminal window
git clone https://aur.archlinux.org/aptos-bin.git
cd aptos-bin
makepkg -si

or use an AUR helper like yay:

Terminal window
yay -S aptos-bin

Install via Pre-Compiled Binaries (Backup Method)

Section titled “Install via Pre-Compiled Binaries (Backup Method)”
  1. Go to the .

  2. Click the “Assets” expandable menu for the latest release to see the pre-compiled binaries.

  3. Download the zip file for Linux.

    1. It’ll have a name like: aptos-cli-<version>-Linux-x86_64.zip or aptos-cli-<version>-Linux-aarch64.zip.
    2. Make sure you choose the right zip file for your computer architecture (x86_64 for Intel / AMD or aarch64 for ARM).
    3. You will likely have to dismiss warnings that this is a suspicious file when downloading.
  4. Unzip the downloaded file.

  5. Move the extracted Aptos binary file into your preferred folder.

  6. Open a terminal and navigate to your preferred folder.

  7. Make ~/aptos an executable by running chmod +x ~/aptos.

  8. Verify that this installed version works by running ~/aptos help.

    You should see instructions for how to use all CLI commands. These can be helpful in the future when you are trying to understand how to use specific commands.

  9. (Optional) It can be helpful to add the Aptos CLI to a folder in your PATH, or to add it to your PATH directly.

    • The steps to add a folder to your PATH are shell dependent.
    • You can run echo $SHELL to print the default shell for your machine, then google specific steps to add a folder to your PATH for that shell.