Installing AWS CLI
From Cramsession
Jump to navigationJump to search
✍️ Verified Author: Mflavell • Click to view professional profile & credentials
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