From 0c8d2f3ffbe5ca3be11b3df26799d5ef33d8914e Mon Sep 17 00:00:00 2001 From: Kanishk Kumar <144468120+Kanishk2Kumar@users.noreply.github.com> Date: Tue, 24 Dec 2024 13:06:29 +0530 Subject: [PATCH] Update 1. Set Up the Environment Wizard.md The windows installation has been updated, updating as per current Aptos Docs --- .../1. Set Up the Environment Wizard.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Start Building on Aptos/2. Getting Started with Development on Aptos/1. Set Up the Environment Wizard.md b/Start Building on Aptos/2. Getting Started with Development on Aptos/1. Set Up the Environment Wizard.md index 674aef3e..ddec18ba 100644 --- a/Start Building on Aptos/2. Getting Started with Development on Aptos/1. Set Up the Environment Wizard.md +++ b/Start Building on Aptos/2. Getting Started with Development on Aptos/1. Set Up the Environment Wizard.md @@ -196,10 +196,13 @@ Now follow the steps given below to install the CLI: 1. Open PowerShell using the Start Menu. 2. Run the following command: ``` - iwr "https://aptos.dev/scripts/install_cli.py" -useb | Select-Object -ExpandProperty Content | python3 + Invoke-WebRequest -Uri "https://aptos.dev/scripts/install_cli.py" -OutFile "$env:TEMP\install_cli.py"; python "$env:TEMP\install_cli.py" ``` -3. The command’s output will show you a command to set the PATH variable, make sure to run it. -4. Run the following command to verify if the CLI is installed. +3. Copy and run the command to update your path from terminal(Replace with your account name): + ``` + setx PATH "%PATH%;C:\Users\\.aptoscli\bin" + ``` +5. Run the following command to verify if the CLI is installed. ``` aptos help ```