jgoenetxea
9/4/2018 - 3:38 PM

Status: CUDA driver version is insufficient for CUDA runtime version

This error cames when tensorflow-gpu is not correctly installed. Do not use conda to install tensorflow. Instead, install pip inside the environment and use it to install tensorflow from the official version site: https://www.tensorflow.org/install/install_linux#InstallingAnaconda

# Follow the instructions on the Anaconda download site to download and install Anaconda.
# Create a conda environment named tensorflow to run a version of Python by invoking the following command:
conda create -n tensorflow pip python=2.7 # or python=3.3, etc.

# Activate the conda environment by issuing the following command:

source activate tensorflow
# (tensorflow)$  # Your prompt should change 

# Issue a command of the following format to install TensorFlow inside your conda environment:
tfBinaryURL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.10.1-cp27-none-linux_x86_64.whl
# More links in: https://www.tensorflow.org/install/install_linux#the_url_of_the_tensorflow_python_package
pip install --ignore-installed --upgrade $tfBinaryURL