web-dev-qa-db-ja.com

代替インデックス付きのpiprequirements.txt

Repoze Zope2インストールのすべての要件をpipに入れたい 要件ファイル 。ほとんどのrepozeパッケージはPyPiにないようですが、それらの代替PyPiインデックスがあります ここ 。しかし、要件ファイルと一緒にそのインデックスを使用するようにpipに指示する方法がわかりません。単一のパッケージの場合、それは簡単です

pip install zopelib -i http://dist.repoze.org/zope2/2.10/simple/

私は以下を試しました

pip install -r requirements.txt -i http://dist.repoze.org/zope2/2.10/simple/

または私のrequirements.txtでこれらのすべての種類または順列:

zopelib -i http://dist.repoze.org/zope2/2.10/simple/
zopelib --index http://dist.repoze.org/zope2/2.10/simple/
-i http://dist.repoze.org/zope2/2.10/simple/ zopelib

または( documentation は「これらのオプションはすべて独自の行になければならないことに注意してください。」と言っているためです。)

--index http://dist.repoze.org/zope2/2.10/simple/
zopelib

では、pipにインデックスとして http://dist.repoze.org/zope2/2.10/simple/ を使用するように指示する正しい方法は何ですか?

31

requirements.txt

-i http://dist.repoze.org/zope2/2.10/simple
zopelib

例:

$ pip install -r requirements.txt
...
Successfully installed zopelib
43
jfs