我在anaconda环境中安装了tensorflow 1.15,并安装了keras 2.3.1。此外,Windows 10和python 3.6。基于this,似乎我需要cudnn5。但是conda为我安装的是7.6.5。
[当我尝试运行conda install cudnn==5
或cudnn==5.1
时,我得到:
PackagesNotFoundError: The following packages are not available from current channels:
任何想法如何实现这一目标?
无法通过pip
安装CuDNN。它实际上是带有.dll
扩展名的文件,需要单独下载并在计算机上安装CUDA的位置。
此外,您真正需要的是将TensorFlow降级到1.14版本(为该gpu版本正确安装cuda和cudnn),因为在https://www.tensorflow.org/install/source_windows#tested_build_configurations中,没有显示TF 1.15的构建配置。