kchoi
kchoi

Reputation: 1215

Could not find any downloads that satisfy the requirement pypm==1.3.4

Error on pushing to heroku : "Could not find any downloads that satisfy the requirement pypm==1.3.4"

As suggested in Django - failed to push some refs to [email protected], I did

"pip install --upgrade -r requirements.txt"

Heroku was not able to install from requirements file the pypm package. The error was:

Downloading/unpacking pypm==1.3.4 (from -r requirements.txt (line 11))
Could not find any downloads that satisfy the requirement pypm==1.3.4 (from -r requirements.txt (line1 1)).
No distributions at all found for pypm==1.3.4 (from -r requirements.txt (line 11))

Does anyone have any clue how to resolve this?

Upvotes: 2

Views: 17016

Answers (1)

Mark Lavin
Mark Lavin

Reputation: 25164

pip install pulls packages from PyPi and this error is telling you that this version of pypm is not listed there. Looking at the PyPi listing for pypm notes that PyPM is the package manager used by ActivePython and is only available by installing ActivePython. You should remove this requirement from your requirements.txt to deploy to Heroku.

Upvotes: 3

Related Questions