python - Error during NearDuplicatesDetection 0.2.0 installation -
i wanted install nearduplicatesdetection 0.2.0 using
pip install git://github.com/parkr/near-dup-detection.git#egg=nearduplicatesdetection
but got error:
184, in get_url_rev url, rev = super(git, self).get_url_rev() file ".../anaconda/lib/python2.7/site-packages/pip/vcs/__init__.py", line 124, in get_url_rev assert '+' in self.url, error_message % self.url assertionerror: sorry, 'git://github.com/parkr/near-dup-detection.git' malformed vcs url. format <vcs>+<protocol>://<url>, e.g. svn+http://myrepo/svn/myapp#egg=myapp
how can fix this? thank in advance!
the correct syntax combine git
pip
is:
pip install git+https://github.com/parkr/near-dup-detection.git#egg=nearduplicatesdetection
Comments
Post a Comment