Not able to install aws ec2 api tools in ubuntu [duplicate]
Possible Duplicate:
Amazon web services and ubuntu 10.04 ec2 instance
I am selected an ubuntu ec2 instance and I am trying to install ec2-tools, but using sudo apt-get install开发者_JAVA技巧 ec2-api-tools i am encountering an error which says no package found. How do I install ec2-api-tools
You need to add the awstools
repository and update apt.
sudo apt-add-repository ppa:awstools-dev/awstools
sudo apt-get update
sudo apt-get install ec2-api-tools
Another option is to download ec2-api-tools from amazon website and configure them for your system. For path configuration see this link.
Regards,
Sanket Dangi
精彩评论