Print TensorFlow Version for Beginners – TensorFlow Tutorial

By | September 24, 2019

When you are using tensorflow to develop ai application, you should know the version of current tensorflow, because different tensorflow versions have different features. In this tutorial, we will print the current tensorflow version for tensorflow beginners.

check tensorflow version

Print tensorflow version

>>> import tensorflow as tf
>>>
>>> print(tf.__version__)

The current tensorflow version is:

1.2.1

Leave a Reply