9

What is the best way to install the aws cli?

There are a few conflicting resources about this online.

Ulad Kasach
  • 1,866

2 Answers2

8

Per https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
Ulad Kasach
  • 1,866
7

This can be installed with snap

sudo snap install aws-cli --classic

https://snapcraft.io/aws-cli

Ulad Kasach
  • 1,866