When did you do this $ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-0.12.1-cp27-none-linux_x86_64.whl
In this step, you indicate that you intend to use the Nvidia card. To start the tensor stream with a graphics adapter (Nvidia graphics card) you need to fulfill all the requirements of Nvidia
Nvidia requires special privileges for its CUDA cores
You also need to check the Cuda paths for the LD_LIBRARY_PATH environment variable, check the Nvidia Documentation . You also need to install profiling support, this can be done by the libcupti-dev library, which is the interface for the NVIDIA CUDA interface. This library provides advanced profiling support. To install this library, run the following command: sudo apt-get install libcupti-dev
But if you want to start the tensor stream only in CPU mode, do not specify $ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-0.12.1-cp27-none-linux_x86_64.whl . With this, you override the TF_BINARY_URL variable to use the Nvidia CUDA kernel. So, to use the processor from all your steps, remove $ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-0.12.1-cp27-none-linux_x86_64.whl and enable only $export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp27-none-linux_x86_64.whl and reinstall
I hope this should fix the problem.
source share