Iron Hoang
Iron Hoang

Reputation: 179

How can i install boto library on windows for python?

I'm using windows 7 system, and python programming. How can i install boto library on windows7?

Upvotes: 11

Views: 31710

Answers (3)

Ajay Nair
Ajay Nair

Reputation: 1867

Downlload the boto package to your computer from say: http://boto.googlecode.com/files/boto-2.6.0.tar.gz

Unzip it. Traverse to the unzipped folder using CMD prompt.

and run the following command:

setup.py install

Verify the installation by trying to import boto in python.

If you have pip installed you can run:

pip install -U boto

EDIT: if setup.py install is not recognized try python setup.py install

Upvotes: 7

Jon Kartago Lamida
Jon Kartago Lamida

Reputation: 854

Actually the answer of this question is very straight forward if you could search for a while. But I assume you really new to python. I will suggest to use some python package manager. One example is pip http://www.pip-installer.org/en/latest/. After finished the installation just run this inside command line

pip install boto

To check installation result open python console and run

import boto

If no error messages then you have successfully install boto

Upvotes: 4

Althaf Hameez
Althaf Hameez

Reputation: 1511

The answer is given in the boto repository on github

$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install

Upvotes: 5

Related Questions