解决Could not load dynamic library ‘cudart64_101.dll’; dlerror: cudart64_101.dll not found

项目场景:

anaconda版pytorch环境


问题描述

运行项目报错:Could not load dynamic library ‘cudart64_101.dll’; dlerror: cudart64_101.dll not found


原因分析:

显然:缺少文件cudart64_101.dll


解决方案:

从cudart64_101.dll free download | DLL‑files.com下载该文件,下载解压后将cudart64_101.dll丢到anaconda的安装目录下:

解决Could not load dynamic library ‘cudart64_101.dll’; dlerror: cudart64_101.dll not found_第1张图片

 

再次启动项目得到的提示应该是这样的:

 得到这样的提示,说明cudart64_101.dll文件已经生效了

补充:如果你不是anaconda虚拟环境,可以尝试进入你的目录C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2,也是直接将cudart64_101.dll文件丢进去。

你可能感兴趣的:(机器学习环境搭建,python,开发语言)