Reputation: 501
Please help!
Using conda install tensorflow-gpu
, it help me to install cuda and cudnn automatically, which is really convienience. However, the problem is that conda can only install the 7.3.1 cudnn, which is not enough for me to run the CNN in tensorflow1.13.0.
Actually, I can install the newest cudnn outside easily, but it won't influence the conda environment. So how can I solve it?
Thanks in advance
Upvotes: 0
Views: 3625
Reputation: 104
Try building a new conda env
after you install cuda and cudnn (mind to find the right versions). See these steps. Also, try pip install tensorflow-gpu
under the conda env (source activate env_name
), too. Hope it helps!
Upvotes: 1