I\'m building TensorFlow from source code. The build appears to succeed; however, when my TensorFlow program invokes import tensorflow, one or both of the foll
import tensorflow
Mysteriously, my libcudnn.so.5 was installed at ~/cuda/lib64. For people like me, you need to change
libcudnn.so.5
~/cuda/lib64
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:~/cuda/lib64"
to
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/home/yourusername/cuda/lib64"