Reputation: 267230
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
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