Blankman
Blankman

Reputation: 267230

How do I update the python lib 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.

Upvotes: 12

Views: 12881

Answers (1)

Wolph
Wolph

Reputation: 80081

If you have pip available: pip install -U boto

If you have easy_install available: easy_install -U boto

Otherwise... install pip.

Upvotes: 21

Related Questions