【发布时间】:2020-07-09 18:30:02
【问题描述】:
Torch 文档说使用
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))
【问题讨论】:
-
你的python版本是多少?
-
@NilankaManoj python 版本:3.6.9
标签: python pip pytorch requirements.txt