ERROR: Could not find a version that satisfies the requirement torch==1.3.1 (from versions: none)
时间: 2023-11-14 13:05:29 浏览: 568
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于pip无法找到所需的torch版本而导致的。可能的原因是您的pip版本过低,或者您的Python版本与torch不兼容。您可以尝试以下几种方法来解决这个问题:
1.升级pip版本:
```python
pip install --upgrade pip
```
2.使用conda安装torch:
```python
conda install pytorch==1.3.1 -c pytorch
```
3.检查您的Python版本是否与torch兼容。您可以在torch官方网站上查看torch的兼容性列表。
阅读全文