Python – Heroku Cedar Python : requirement in github – clone fails with error 128

Heroku Cedar Python : requirement in github – clone fails with error 128… here is a solution to the problem.

Heroku Cedar Python : requirement in github – clone fails with error 128

I want to use the PyFire GitHub library https://github.com/mariano/pyfire

This is what pip freeze generated for me:

-e git+ssh://[email protected]/mariano/pyfire.git@db856bb666c4b381c08f2f4bf7c9ac7aaa233221#egg=pyfire-dev

But when doing so, the clone being done to install dependencies fails with an error code, which I can’t

heroku run console

Check the full error log….

Have experience or ideas for this?

Thanks in advance

Solution

pip freeze seems to be producing the wrong result, you should be able to modify your requirements.txt to:

git+https://github.com/mariano/pyfire.git@db856bb666c4b381c08f2f4bf7c9ac7aaa233221#egg=pyfire-dev

Related Problems and Solutions