I\'m having problems in importing tensorflow in python3:
>>> import tensorflow as tf
Traceback (most recent call last):
File \"/usr/local/lib/pyth
I faced this error due to incompatibility between Tensorflow version with CUDA.
I had tensorflow_gpu-1.3.0
, CUDA 9
and cuDNN 7
which are incompatible as per this https://www.tensorflow.org/install/source#tested_build_configurations
so I uninstalled tensorflow_gpu-1.3.0
and installed tensorflow_gpu-1.5.0
and it worked fine