web-dev-qa-db-ja.com

要件からPytorchをインストールします

トーチの文書は使います

pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
 _

pYTORCHの最新バージョンをインストールするには。これは手動で実行すると機能しますが、REQ.TXTに追加してpip install -r req.txt、それは失敗してERROR: No matching distribution

編集:req.txtからの行全体を追加し、ここでエラーが発生します。

torch==1.4.0+cpu -f https://download.pytorch.org/whl/torch_stable.html

torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.htmltorch==1.4.0+cpu
 _
ERROR: Could not find a version that satisfies the requirement torch==1.4.0+cpu (from -r requirements.txt (line 1)) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2, 0.3.1, 0.4.0, 0.4.1, 1.0.0, 1.0.1, 1.0.1.post2, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.4.0)
ERROR: No matching distribution found for torch==1.4.0+cpu (from -r requirements.txt (line 1))
 _
6
-f https://download.pytorch.org/whl/torch_stable.html 
torch==1.4.0+cpu 
-f https://download.pytorch.org/whl/torch_stable.html
torchvision==0.5.0+cpu
 _

私のためにうまくいった:)

2
n0obcoder

あなたはそのようなことをすることができます:

$ pip install -r req.txt --find-links https://download.pytorch.org/whl/torch_stable.html

このようにreq.txtにあなたのPytorch要件を置くただ

torch==1.4.0+cpu

torchvision==0.5.0+cpu

1
Rishab P.