pytorch 如何在虚拟环境中安装torch和torchvision以及pip和python 3.8.3?

dgenwo3n  于 2023-01-20  发布在  Python
关注(0)|答案(1)|浏览(177)

我为我的项目创建了一个虚拟环境,并且尝试通过pip安装torch

pip install torch===1.5.1 torchvision===0.6.1 -f https://download.pytorch.org/whl/torch_stable.html

我得到了误差-

ERROR: Could not find a version that satisfies the requirement torch===1.5.1 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch===1.5.1

有的方案推荐使用conda,有必要吗?不能只用pip

4ioopgfo

4ioopgfo1#

您可以尝试直接从轮子文件进行安装:

pip install https://download.pytorch.org/whl/cu102/torch-1.5.1-cp36-cp36m-win_amd64.whl
pip install https://download.pytorch.org/whl/cu102/torchvision-0.6.1-cp36-cp36m-win_amd64.whl

相关问题