安装torch1.2.0时,报错:from torch._C import * ImportError: DLL load failed: 找不到指定的模块
两种解决方法1.法1直接pip uninstall numpy在pip install numpy不用conda是因为用conda卸载numpy会把torch也卸载掉2.法2升级python到3.6.5conda install python==3.6.5我是用了上面两个方法解决的测试是否OK在命令行输入python进入python之后,import torch就行然后看看GPU是否可用:torch.cuda.is_available() %cuda是否可用;torch.cud





