I just installed TF into a fresh conda environment and I tried installing a couple versions of cudnn, not sure if relevant. GPU is not working because I am getting this error:
tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcudart.so.11.0'; dlerror: libcudart.so.11.0: cannot open shared object file: No such file or directory
and indeed I look in /usr/local/cuda/lob64
and the file i see there is libcudart.so.10.1
, so it isn't the right version I guess (the 10
should be an 11
). Does anyone know which package I need to install to get this libcudart.so.11.0
file? If not maybe I could just use an older version of tensorflow? (I just tried pip install tensorflow==2.3.0
to no avail, could not find the package.) So i think the better option is somehow getting the newer libcudart file, maybe this means I need to upgrade cuda?