(Tensorflow-GPU) import tensorflow ImportError: Could not find 'cudnn64_7.dll'

后端 未结 4 444
情话喂你
情话喂你 2021-02-05 14:39

After created tensorflow environment under anaconda, I installed tensorflow-gpu. Then I was trying to import tensorflow to verify if it\'s correctly installed, but got this erro

4条回答
  •  悲&欢浪女
    2021-02-05 15:12

    According to you previous answer, you seem to find out prebuilt tensorflow-gpu 1.5 is not compatible with CUDA 9.0 + CudNN 6.0. There are two possible solutions for your answer, if you want to use tensorflow-gpu 1.5:

    1, upgrade your CUDA tool chain to CUDA 9.0 +Cudnn 7.0 (currently Cudnn 7.0.5 for CUDA 9.0).

    2, recompile the tensorflow-gpu 1.5 target for CUDA 9.0 + cudnn 6.0.

    I suggest choosing the first option for ease. But the official webpage of tensorflow 1.5 dose not deny the possibility of option 2: https://github.com/tensorflow/tensorflow/releases/tag/v1.5.0

提交回复
热议问题