The system cannot find the path specified. 2023-05-16 23:57:02.914329: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found
时间: 2023-06-20 09:07:41 浏览: 216
Could not load dynamic library 'cudart64_110.dll';报错
这个错误提示通常是 TensorFlow 无法找到 CUDA 和 cuDNN 库文件。你需要确保 CUDA 和 cuDNN 安装在正确的路径上,并且在系统环境变量中添加相应的路径。
如果你已经安装了 CUDA 和 cuDNN,但仍然遇到这个问题,你可以尝试以下解决方法:
1. 检查 CUDA 和 cuDNN 的版本是否与 TensorFlow 的版本兼容。
2. 确保 CUDA 和 cuDNN 的路径正确添加到系统环境变量中。
3. 重新安装 CUDA 和 cuDNN,并确保按照官方文档正确配置。
如果以上方法都不起作用,你可以尝试在不使用 GPU 的情况下运行 TensorFlow。在导入 TensorFlow 时,将 `tf.config.set_visible_devices([], 'GPU')` 添加到代码中即可禁用 GPU。
阅读全文