ImportError: DLL load failed: The specified module could not be found

import tensorflow报错:ImportError: DLL load failed: The specified module could not be found.
环境:Win10+ GTX960M + CUDA9.0 + Cudnn7.0 + tensorflow 1.13

原因:CUDA 9.0 不支持tensorflow-gpu 1.13及以上,需要降级到1.12
解决方法:

pip unistall tensorflow-gpu
pip install tensorflow-gpu==1.12.0

你可能感兴趣的:(ImportError: DLL load failed: The specified module could not be found)