First, set up the python environment with yum. It is assumed that the epel repository has already been installed.
command
yum -y install python python-devel --enablerepo=epel
Put the setuptools officially provided by python in yum. This will install the python easy_install command.
command
yum -y install python-setuptools
Install the pip command using the easy_install command.
command
easy_install pip
After entering the pip command, install awscli with the pip command as shown on the AWS official page.
http://aws.amazon.com/jp/cli/
command
pip install awscli
This completes the installation. Environment variables and other settings need to be set separately.
Have a look at this. http://qiita.com/mychaelstyle/items/e09309104dd6daa7c01b