web-dev-qa-db-fra.com

Installez PyTorch à partir de Configuration requise.txt

La documentation de la torche dit utiliser

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

pour installer la dernière version de Pytorch. Cela fonctionne quand je le fais manuellement mais quand je l'ajoute à req.txt et do pip install -r req.txt, ça échoue et dit ERROR: No matching distribution.

Edit: Ajout de la ligne entière de req.txt et d'erreur ici.

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
Siddharth Prajosh
-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

travaillé bien pour moi :)

2
n0obcoder

Vous pouvez faire quelque chose comme ça:

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

Il suffit de mettre vos exigences pytorch dans req.txt comme ça:

torch==1.4.0+cpu

torchvision==0.5.0+cpu

1
Rishab P.