Install the Aptos CLI on Windows
For Windows, the easiest way to install the Aptos CLI tool is via Python script. If that does not work, you can also install manually via pre-compiled binaries. The pre-compiled binaries approach is not generally recommended as updating is very manual.
Install via Python Script
-
Ensure you have Python 3.6+ installed by running
python3 --version
.- If python3 is not installed, you can find installation instructions on python.org.
-
In PowerShell, run the install script:
iwr "https://aptos.dev/scripts/install_cli.py" -useb | Select-Object -ExpandProperty Content | python3
cautionIf you receive the error
ModuleNotFoundError: No module named packaging
you can installpackaging
by runningpip3 install packaging
then repeat this step.- You should see instructions in your terminal saying "Execute the following command to update your PATH:".
-
Copy and run the command to update your PATH from the terminal.
- It should look something like
setx PATH "%PATH%;C:\Users\<your_account_name>\.aptoscli\bin"
.
- It should look something like
-
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.
Updating
If you would like to update the Aptos CLI to the latest version, you can run aptos update
.
Install via Pre-Compiled Binaries (Backup Method)
- Go to the Aptos CLI release page.
- Click the "Assets" expandable menu for the latest release to see the pre-compiled binaries.
- Download the zip file for Windows.
- It will have a name like:
aptos-cli-<version>-Windows-x86_64.zip
- You will likely have to dismiss warnings that this is a suspicious file when downloading.
- It will have a name like:
- Unzip the downloaded file.
- Move the extracted Aptos binary file into the folder you would like to call it from in the future.
- Right click, then copy the path to the executable.
- Ex.
C:\Users\<username>\Downloads\aptos-cli-3.1.0-Windows-x86_64\aptos.exe
.
- Ex.
- Open PowerShell via the Start Menu.
- Verify the installation by running the
help
command.- Ex.
C:\Users\<username>\Downloads\aptos-cli-3.1.0-Windows-x86_64\aptos.exe help
.
- Ex.
If neither of the above methods work, you will have to build the CLI from source by following these steps: Install Specific Aptos CLI Versions (Advanced)
Updating
When using this method, you can update the Aptos CLI by deleting your existing installation, then following the installation steps again.