Installing AWS CLI: Difference between revisions
From Cramsession
Jump to navigationJump to search
✍️ Verified Author: Mflavell • Click to view professional profile & credentials
(Created page with "Tech Notes > AWS > Installing AWS CLI") |
No edit summary |
||
| Line 1: | Line 1: | ||
[[Tech Notes]] > [[AWS]] > Installing AWS CLI | [[Tech Notes]] > [[AWS]] > Installing AWS CLI | ||
=Install the dependaicies= | |||
sudo apt update && sudo apt install curl unzip -y | |||
=Get the right installer= | |||
==x86 and 64 bit== | |||
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |||
==ARM💪 (e.g., Raspberry Pi, Graviton): | |||
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip" | |||
=Unzip and install= | |||
unzip awscliv2.zip | |||
sudo ./aws/install | |||
=Check the install | |||
aws --version | |||
Latest revision as of 22:58, 16 May 2026
Tech Notes > AWS > Installing AWS CLI
Install the dependaicies
sudo apt update && sudo apt install curl unzip -y
Get the right installer
x86 and 64 bit
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
==ARM💪 (e.g., Raspberry Pi, Graviton):
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
Unzip and install
unzip awscliv2.zip sudo ./aws/install
=Check the install
aws --version