I am trying to configure tensorflow-gpu in Ubuntu 18.04.1 LTS. I have followed the below steps successfully
- Installed CUDA 10 (https://developer.nvidia.com/cuda-downloads)
- Installed cuDNN (https://developer.nvidia.com/rdp/cudnn-download)
- Set cuda path in ~/.bashrc as follows
- Installed tensorflow_gpu in virtual environment
export PATH=/usr/local/cuda-10.0/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-10.0/lib64:${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
$ virtualenv --system-site-packages -p python3 tensorflow_gpu_env
$ source tensorflow_gpu_env/bin/activate
$ pip3 install --upgrade tensorflow-gpu
But still when I try to import tensorflow
$ import tensorflow as tf
I get this error
ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory
Detailed Error: https://www.dropbox.com/s/j224jn24p4fqgxy/error.txt?dl=0