Skip to content

Commit

Permalink
Update install-cli-windows.mdx (#689)
Browse files Browse the repository at this point in the history
Changed the install script for windows where in python3 was creating issues for installation in windows 11 (python ver. 3.13.0). Updated cmd to "-OutFile python "
  • Loading branch information
Asylum0741 authored Nov 1, 2024
1 parent b387b1d commit 5d68d72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For Windows, the easiest way to install the Aptos CLI tool is via Python script.
### In PowerShell, run the install script:

```powershell filename="Terminal"
Invoke-WebRequest -Uri "https://aptos.dev/scripts/install_cli.py" -OutFile "$env:TEMP\install_cli.py"; python3 "$env:TEMP\install_cli.py"
Invoke-WebRequest -Uri "https://aptos.dev/scripts/install_cli.py" -OutFile "$env:TEMP\install_cli.py"; python "$env:TEMP\install_cli.py"
```

<Callout type="warning">
Expand Down

0 comments on commit 5d68d72

Please sign in to comment.