Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install boto?

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

like image 481
Worbis Avatar asked Mar 20 '10 00:03

Worbis


People also ask

Does Boto work with Python 3?

The AWS SDK for Python (also known as Boto) has been updated and is now compatible with Python 3. You can now build AWS applications using versions 2.6, 2.7, 3.3, and 3.4 of Python.


2 Answers

  1. If necessary, install pip:

    sudo apt-get install python-pip

  2. Then install boto:

    pip install -U boto

like image 104
jslopez Avatar answered Sep 21 '22 20:09

jslopez


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 
like image 24
sheki Avatar answered Sep 21 '22 20:09

sheki