问题总结:W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library

1.问题

W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library ‘libcudart.so.11.0’; dlerror: libcudart.so.11.0: cannot open shared object file: No such file or directory

在这里插入图片描述

2.错误原因

tensorflow 的版本要与cudn相匹配(匹配关系可以去官网查)官网
我的:
在这里插入图片描述

3.解决方法

(1)卸载版本不匹配的tensorflow版本

pip uninstall tensorflow

(2)安装对应版本的tensorflow

pip install  tensorflow==2.3.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

不报错了
在这里插入图片描述

你可能感兴趣的:(问题总结,tensorflow,cudn,tensorflow,深度学习,cuda)