1👍
To expand on forvaidya’s answer, yaml is missing from your requirements.txt file and that is why Heroku is not installing it when you commit your app. In your base directory, rerun the following command to make this work:
pip freeze > requirements.txt
git add .
git commit -m "fixed requirements.txt file"
…then push back to Heroku.
- [Answer]-DJango 1.6 model.BinaryField causes TypeError
- [Answer]-How to implement send email functionality in google app engine django non-rel project
- [Answer]-Django AbstractUser Inheritence Error
Source:stackexchange.com