When I put mailchilmp3==1.0.26
in my requirements.txt and run pip install -r requirements.txt
it works locally, but when deploying to our AWS instances (via circleCI and codedeploy) I get the following error:
Downloading/unpacking mailchimp3==1.0.26 (from -r requirements.txt (line 17))
Could not find any downloads that satisfy the requirement mailchimp3==1.0.26 (from -r requirements.txt (line 17))
Cleaning up...
No distributions at all found for mailchimp3==1.0.26 (from -r requirements.txt (line 17))
Yet if I run a pip search mailchimp3
from that server I see that pip finds the correct package:
mailchimp3 (1.0.26) - A python client for v3 of MailChimp API
Also, if I ssh onto that server and run the sudo pip install -r requirements.txt
manually (or sudo pip install mailchimp3
) it works successfully.
Any ideas what might be causing this?