Heroku Upload - Could not find a version that satisfies the requirement anaconda-client==1.4.0

后端 未结 5 1204
忘了有多久
忘了有多久 2020-12-17 17:45

I\'m trying to push a Django app onto Heroku, but am getting the following error upon running git push heroku master:

Counting objects: 80, done         


        
5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 18:45

    For every message

    No matching distribution found for X

    that you get, you have to manually remove that line from requirements.txt file:

    1 - remove the line where X appears
    2 - save the file
    3 - commit
    4 - push

    do it again for the next error reported by the prompt, until you reach the end of the list cointained in requirements.txt

提交回复
热议问题