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 ```