Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I update the python lib boto?

Tags:

python

boto

I am using python's boto script, and I haven't touched in a long time and sort of forgot basic python stuff.

How do I update the script? I'm not even sure how I installed it so please guide me to figure out what I have to do.

like image 995
Blankman Avatar asked Feb 09 '11 01:02

Blankman


People also ask

How do I know if Boto is installed?

To check which version of boto3 is installed, use pip show boto3 or pip3 show boto3 in your Windows CMD, command line, or PowerShell.

What is Boto library in Python?

Boto is a software development kit (SDK) designed to improve the use of the Python programming language in Amazon Web Services.

Does Boto work with Python 3?

Boto is a Python package that provides interfaces to Amazon Web Services. Currently, all features work with Python 2.6 and 2.7. Work is under way to support Python 3.3+ in the same codebase.


1 Answers

If you have pip available: pip install -U boto

If you have easy_install available: easy_install -U boto

Otherwise... install pip.

like image 128
Wolph Avatar answered Nov 08 '22 11:11

Wolph