AWS CLI on Ubuntu
Installing and Configuring AWS CLI on Ubuntu 24.04
Prerequisites
- Ubuntu 24.04 LTS installed
- User with sudo privileges
- Internet connection
Installation Methods
Method 1: Using APT (Recommended)
# Update package listssudo apt update
# Install AWS CLIsudo apt install awscli -y
# Verify installationaws --version
Method 2: Using PIP
# Update package listssudo apt update
# Install Python and PIP if not already installedsudo apt install python3 python3-pip -y
# Install AWS CLIpip3 install awscli --upgrade --user
# Add to PATH if needed (add to ~/.bashrc)echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrcsource ~/.bashrc
# Verify installationaws --version
Method 3: Using the Bundled Installer
# Update package listssudo apt update
# Install required dependenciessudo apt install unzip curl -y
# Download the AWS CLI installercurl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
# Unzip the installerunzip awscliv2.zip
# Run the install scriptsudo ./aws/install
# Verify installationaws --version
Configuration
Configure AWS CLI with your credentials:
aws configure
You’ll be prompted to enter:
- AWS Access Key ID
- AWS Secret Access Key
- Default region name (e.g., us-east-1, eu-west-1)
- Default output format (json, text, or yaml)
Creating Named Profiles
To create additional named profiles:
aws configure --profile profilename
Verifying Configuration
Your configuration is stored in:
~/.aws/credentials
- Contains your access keys~/.aws/config
- Contains region and output settings
To test your configuration:
# Using default profileaws s3 ls
# Using named profileaws s3 ls --profile profilename
Updating AWS CLI
To update an installation done via apt:
sudo apt update && sudo apt upgrade awscli
To update an installation done via pip:
pip3 install awscli --upgrade --user