ERROR: Could not find a version that satisfies the requirement torch (from versions: none) ERROR: No matching distribution found for torch
时间: 2023-11-04 10:59:29 浏览: 122
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这 error 是由于没有安装 torch 库导致的。您可以通过以下命令安装 torch 库:
在 Linux/macOS 系统下执行:
pip3 install torch -f https://download.pytorch.org/whl/cu101/torch_stable.html
在 Windows 系统下执行:
pip3 install torch -f https://download.pytorch.org/whl/cu101/torch_stable.html
希望对您有帮助。
阅读全文