Skip to content Skip to sidebar Skip to footer

Django Deployment Issue On Heroku With Exact Clone Of Running App: Push Rejected Error

I have a Django app on Heroku. I set up another app on the same Heroku account. Now I want another instance of the first app. I just cloned the first app and pushed into the newly

Solution 1:

This appears to be related to an issue here.

In other words, distribute has been deprecated and is being replaced with setuptools. Try replacing the line distribute==0.6.27 with setuptools>=0.7 as per the recommendation in the link.

Solution 2:

virtualenv is a tool to create isolated Python environments.

you will need to add the following to fix command python setup.py egg_info failed with error code 1, so inside your requirements.txt add this:

virtualenv==12.0.7

Post a Comment for "Django Deployment Issue On Heroku With Exact Clone Of Running App: Push Rejected Error"