質問

を使ってDuplicatesDetection 0.2.0をインストールしたいと思った

PIPインストールgit://github.com/parkr/near-dup-detection.git#gg= nearDuplicatesDetection

しかし私はこのエラーを手に入れました:

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' is a malformed VCS
url. The format is <vcs>+<protocol>://<url>, e.g. svn+http://myrepo/svn/MyApp#egg=MyApp
.

どうすればいいですか?事前にありがとうございました!

役に立ちましたか?

解決

gitpipと組み合わせるための正しい構文は次のとおりです。

pip install git+https://github.com/parkr/near-dup-detection.git#egg=NearDuplicatesDetection
.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top