On Wed, May 19, 2010 at 7:08 AM, omat <[email protected]> wrote: > 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') > > Should I set the version somewhere other then the setup.py?
I don't know anything about pip, but it looks like the error is caused because it stops parsing "git+https" at the plus sign. So either it doesn't expect a git remote name there at all, or it doesn't like urls containing a plus. I've never seen this git+https@ notation anyway; are you sure it's right? How about this: pip install [email protected]:teknolab/teknolab-django-reputation.git -E test_env/ or this: pip install git://github.com/teknolab/teknolab-django-reputation.git -E test_env/ Have fun, Avery -- 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.
