I need to find which version of TensorFlow I have installed. I\'m using Ubuntu 16.04 Long Term Support.
Almost every normal package in python assigns the variable .__version__ to the current version. So if you want to find the version of some package you can do the following
import a
a.__version__
For tensorflow it will be
import tensorflow as tf
tf.version.VERSION
For old versions of tensorflow (below 0.10), use tf.__version__