I installed a package from git hub:
pip install -e git+http://github.com/un33k/django-uuslug.git#egg=django-uuslug
Then I did:
pip freeze > req.txt
I get:
django-uuslug==0.1
Now if I do a pip install -r req.txt
, I get a package not found
error, which due to the fact that django-uuslug is not on pypi.
Why is freeze not remembering the full path as it was given during the install?