No matching distribution found for botocore==1.8.43 (from awscli)

Running into the following error trying to install AWS CLI. Strangely, it only affects this single repo/branch combination:

https://circleci.com/gh/makethunder/dynamic-template-engine/17

1 Like

I get 404 on that link. I can see this one though.

I have the same issue…

Yeah this is failing because the requirements for awscli were bumped from botocore==1.8.40 to botocore==1.8.43

I recommend installing awscli on an image instead of installing it on each run. In the meantime you can get away with installing an older version of awscli.

Here is a great example from Ricardo:
https://github.com/cibuilds/aws/blob/master/Dockerfile
(also that image could work for some use cases)

Edit: Quick fix:

pip install awscli==1.14.17

2nd Edit: This appears to be resolved upstream

1 Like