I installed Tensorflow. When I try to import it:
import tensorflow as tf
I get the following issue:
ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory
I have installed CUDA 10 and referenced it in my LD_LIBRARY_PATH:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-10.0/lib64
I am working under Ubuntu 18.04.1 with Python 2.7.
Should I uninstall CUDA 10 and install CUDA 9 instead or can I keep working on Tensorflow using CUDA 10 ?