windows安装cuda/pytorch踩过的坑

windows安装cuda/pytorch踩过的坑

  1. pytorch版本要比cuda高才行;

  2. 国内pip镜像源会安装CPU版本的torch,国外镜像源又很慢,所以先在Links for torch下好需要版本的GPU-cuda,再使用pip install 安装;

  3. 安装torchvision时,如果不指定版本会下载最新版本,同时卸载旧版本torch,安装新版本torch。如果不想这样,先在pytorch/vision: Datasets, Transforms and Models specific to Computer Vision (github.com)查看和本机安装的torch对应的torchvision版本,再在Links for torchvision下载好该版本,使用pip install安装。

另:
torch命名格式:
在这里插入图片描述
torch版本+cuda版本+python版本+平台

你可能感兴趣的:(随手笔记,pytorch,python)