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

后端 未结 5 1203
忘了有多久
忘了有多久 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:28

    Try also this:

    pip freeze>requirements.txt
    

    Then try again with

    git add .
    git commit -m "something"
    git push heroku master
    

提交回复
热议问题