views:

355

answers:

3

So that I am able to work with it within my python scripts?

+1  A: 

switch to the boto-* directory and type python setup.py install.

Ignacio Vazquez-Abrams
A: 
$ easy_install boto
gnibbler
A: 

Installing Boto depends on the Operating system. For e.g in Ubuntu you can use the aptitude command:

sudo apt-get install python-boto

Or you can download the boto code from their site and move into the unzipped directory to run

python setup.py install
sheki