0

I am trying to deploy a Django 1.7 project to a new app in Heroku but I get the following ValueError on the Django requirement.

ValueError: ("Expected ',' or end-of-list in", 'Django==git+git://github.com/django/[email protected]', 'at', '+git://github.com/django/[email protected]')

My requirements.txt snippet is:

Django==git+git://github.com/django/[email protected]

1 Answer 1

2

That's not the correct format for a git URL in a pip requirements file.

You should use this:

git+git://github.com/django/[email protected]#egg=Django

See the pip documentation.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.