FuzzyAmi
FuzzyAmi

Reputation: 8145

Getting a "DistributionNotFound" when running aws

I'm trying to run the aws shell on a linux machine. Having installed aws and boto, I'm getting this error:

pkg_resources.DistributionNotFound: boto

but boto is clearly installed, as shown in the pip freeze output. what am I doing wrong?

Upvotes: 0

Views: 109

Answers (1)

FuzzyAmi
FuzzyAmi

Reputation: 8145

I've found this issue in github, and one answer there solved my problem, so I'm recording this for posterity:

pip uninstall boto
pip install -U gsutil

Upvotes: 2

Related Questions