How do I install a package from Bitbucket using pip?
bitbucket, pip, python
Solution
Your Github link looks to be pointing to a gzipped tar file. Try doing the same for your Bitbucket hosted project -- https://bitbucket.org/abraneo/django-registration/get/tip.tar.gz
Problem
I'm making a setup.py that needs to point to my repository. with github i can do this: ``` dependency_links=['https://github.com/nathanborror/django-registration/tarball/master#egg=django-registration'] ``` how can I do the same with a bitbucket project ? for example this url: ``` https://bitbucket.org/abraneo/django-registration ``` Thanks.