On Wed, May 19, 2010 at 4:08 AM, omat <[email protected]> wrote: > I can install this package via pip when using the local copy of the > application, however, when I try to install from github with: > > pip install [email protected]:teknolab/teknolab-django- > reputation.git -E test_env/ > > I get this value error: > > ValueError: ('Expected version spec in', '[email protected]:teknolab/ > teknolab-django-reputation.git', 'at', '[email protected]:teknolab/ > teknolab-django-reputation.git')
pip doesn't support the [email protected] url format. For private repos use git+ssh://: git+ssh://github.com/teknolab/teknolab-django-reputation.git But what you probably want, since teknolab-django-reputation is public, is to just use the public git url: git+git://github.com/teknolab/teknolab-django-reputation.git -- You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/github?hl=en.
