Tensorflow import error

前端 未结 2 966
误落风尘
误落风尘 2021-01-02 08:21

I\'m trying to install tensorflow which supports GPU.

I tried the information in the following link

https://www.tensorflow.org/install/install_windows

<
2条回答
  •  粉色の甜心
    2021-01-02 08:46

    I had a similar problem, and had to be very careful about the version of CUDA, and the version of CuDNN. I hit the exact error you are hitting, and fixed it by going through what I documented here: http://www.laurencemoroney.com/installing-tensorflow-with-gpu-on-windows-10/

    Give it a try! :)

    (The most common failure I've found is that you download the latest CUDA, and not the matching CUDA. Right now CUDA is at 9.1, but TF requires 9.0 -- your error says cudart90.dll) -- so find the 9.0 drivers, download and install them. Then run TensorFlow. It might then fail on the CuDNN drivers, which is good, becuase you know CUDA is right. Then download the right CuDNN drivers (matching the version # in the error) and try again.)

提交回复
热议问题