Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 677
Iron Hoang Avatar asked Jan 16 '13 04:01

Iron Hoang


2 Answers

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

like image 81
Jon Kartago Lamida Avatar answered Oct 06 '22 08:10

Jon Kartago Lamida


The answer is given in the boto repository on github

$ git clone git://github.com/boto/boto.git
$ cd boto
$ python setup.py install
like image 37
Althaf Hameez Avatar answered Oct 06 '22 06:10

Althaf Hameez