how to check which version of tensorflow is installed code example

Example 1: check if tensorflow gpu is installed

import tensorflow as tf
print(tf.test.gpu_device_name())

Example 2: check tensorflow version

import tensorflow as tf
tf.__version__

Example 3: tf version

python -c 'import tensorflow as tf; print(tf.__version__)'  # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)'  # for Python 3

Example 4: check tensorflow version

python3
import tensorflow as tf
tf.__version__

Example 5: tensorflow version check

import tensorflow as tf 
print(tf.__version__)