sudo apt-get install python python-pip
sudo pip install awscli
aws configure
This will create the following configuration files in ~/.aws/ :
$ ls ~/.aws/
config credentials
This file contains the default and additional profiles you may have configured using the 3. command, modulo a few switches as explained in the documentation at Amazon, or using aws help
This file contains the configuration details per profile as configured using the 3. command as follows:
$ cat ~/.aws/config
[default]
output = json
region = eu-west-1
[backup]
output = json
region = eu-central-1
Thanks @rdp, worked a treat on my Wheezy install