Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
What was wrong with code.google.com/p/boto/wiki/RunningFromSubversion? This seems perfectly clear. What didn't you like? What confused you? – S.Lott Mar 20 '10 at 12:32

5 Answers

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
share|improve this answer
10  
Using apt-get gave me an old version of boto. For the lastest version, this works: git clone https://github.com/boto/boto.git; cd boto; sudo python setup.py install – Tyler Aug 31 '11 at 4:08
2  
Nowadays pip is the appropriate way of doing this. See the pip answer below. – Jordan Aug 21 '12 at 17:43

If you have pip installed:

pip install -U boto
share|improve this answer
1  
sudo apt-get install python-pip if using ubuntu – flob Oct 4 '12 at 18:40
$ easy_install boto
share|improve this answer

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

share|improve this answer

Best way to install boto in my opinion is to use:

pip install boto-1.6 

This ensures you'll have the boto glacier code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.