Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 1. Set Up the Environment Wizard.md #793

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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\<your_account_name>\.aptoscli\bin"
```
5. Run the following command to verify if the CLI is installed.
```
aptos help
```
Expand Down