Install AWSCLI on Centos using PIP and bundle installer
How to install AWSCLI on centos instance
Ways to install the AWS Command Line Interface AWS CLI
Using pip
Using a bundled installer
Using pip
sudo yum install epel-release
sudo yum install python-pip
pip --version
pip install awscli --upgrade --user
aws –version
Using a bundled installer
curl "https://s3.amazonaws.com/aws-cli/awsc..." -o "awscli-bundle.zip"
unzip awscli-bundle.zip
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws