当我们使用 tensorflow 最新版本的时候 ,会出现这样的错误
2020-02-07 20:58:37.344417: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'cudart64_101.dll'; dlerror: cudart64_101.dll not found 2020-02-07 20:58:37.350291: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
链接:https://pan.baidu.com/s/1t0rog1mT-wR_5PlvCEQswQ
提取码:ch3z
1、提取出cudart64_101.dll文件,把文件放到你的系统路径。它的默认路径是在:
C:WindowsSystem (Windows 95/98/Me),
C:WINNTSystem32 (Windows NT/2000),
C:WindowsSystem32 (Windows XP, Vista, 7, 8, 8.1, 10).
在 64位 Windows 上,32位 DLL 文件的默认路径是
C:WindowsSysWOW64,
64 位 DLL 文件在C:WindowsSystem32
。
确保覆盖已有的全部文件(但保留一个原文件备份)。
重启电脑。
2、如果问题仍未解决,按以下步骤注册 DLL 文件:
32 位 DLL 文件用在 32 位 Windows 上,64 位 DLL 文件用在 64 位 Windows 上:
- 打开一个提升权限运行的命令行窗口。
- 具体操作是点击“开始”,点击“所有程序”,点击“附件”,右键点击“命令提示符”,然后点击“以管理员权限运行”。
- 在 Windows 8/10 中,前往“开始”界面。键入“cmd”, Windows 会找到“命令行提示符”。右键点击“命令提示符”,选择“以管理员权限运行”。
- 如果要求输入管理员密码或确认,输入密码,或点击“允许”。
- 输入 regsvr32 “filename".dll 然后按下回车。
将 32 位 DLL 文件注册到一台 64 位 Windows 上:
- 按前述方法打开一个提升权限运行的命令行窗口。
- 在命令行中键入:
cd c:windowssyswow64
- 然后键入以下命令并回车:
regsvr32 c:windowssyswow64"filename".dll