torch安装踩坑记录

import torch 报错 ImportError: DLL load failed: The specified module could not be found

win10 cuda90 torch== 1.1.0
from torch._C import *
ImportError: DLL load failed: The specified module could not be found.
更换python 将其版本改成 3.6.5

pytorch安装速度慢

torch 和torchvision要适配
pip3 install https://download.pytorch.org/whl/cu90/torch-1.1.0-cp36-cp36m-win_amd64.whl
pip3 install https://download.pytorch.org/whl/cu90/torchvision-0.3.0-cp36-cp36m-win_amd64.whl

你可能感兴趣的:(问题)