AWS DevOps How To's

How to Install AWS CLI on Ubuntu 20.04

In this article, we will guide you how to install the AWS CLI command-line utility on Ubuntu Server 20.04

1. To Install

If you check the AWS documentation, you will see that AWS doesn’t recommend installing the package in a specific location. In this post, I will create a hidden directory called .aws and install the CLI into it.

2. Create Directory

Let us start with creating a new directory called .aws in our come directory.

cd 
mkdir .aws

3. Install Unzip

Next, we need to install unzip in order to extrect the CLI. use the following command to install unzip.

sudo apt install unzip

4. Download and Unzip AWS CLI

Now, let’s download the CLI using the following command. Please make sure you download it to the .aws directory.

sudo curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"

When the download is completed unzip the file.

unzip awscliv2.zip

5. Install and Test

The last step is to install the AWS CLI using the following command.

sudo ./aws/install

By default, AWS will install the CLI in the following path.

/usr/local/bin/aws

To check the AWS CLI version type:

aws --version

Post Comment