338

I need to find which version of TensorFlow I have installed. I'm using Ubuntu 16.04 Long Term Support.

halfer
  • 18,701
  • 13
  • 79
  • 158
Hans Krupakar
  • 3,663
  • 2
  • 10
  • 19
  • 11
    To retreive the summary (incl. version of package) try: `pip show [package name]`, eg: `pip show tensorflow`, `pip show numpy` etc. – Sumanth Lazarus Jul 30 '19 at 12:30
  • 18
    Simply `print(tf.__version__)` – Pe Dro Apr 16 '20 at 07:37
  • Anyone knowing the difference between `tf.__version__` and `tf.version.VERSION`? My 0.12.0 installation doesn't support latter. – Jianyu Oct 05 '20 at 12:36
  • relevant TensorFlow 2.x API docs (`tf.version.VERSION` is a v2.0 API): https://www.tensorflow.org/api_docs/python/tf/version – michael Jan 25 '21 at 00:43

16 Answers16

499

This depends on how you installed TensorFlow. I am going to use the same headings used by TensorFlow's installation instructions to structure this answer.


Pip installation

Run:

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

Note that python is symlinked to /usr/bin/python3 in some Linux distributions, so use python instead of python3 in these cases.

pip list | grep tensorflow for Python 2 or pip3 list | grep tensorflow for Python 3 will also show the version of Tensorflow installed.


Virtualenv installation

Run:

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

pip list | grep tensorflow will also show the version of Tensorflow installed.

For example, I have installed TensorFlow 0.9.0 in a virtualenv for Python 3. So, I get:

$ python -c 'import tensorflow as tf; print(tf.__version__)'
0.9.0

$ pip list | grep tensorflow
tensorflow (0.9.0)
edwinksl
  • 6,569
  • 3
  • 28
  • 34
  • 3
    and if you are building from source, your version is commit hash from `git rev-parse HEAD` – Yaroslav Bulatov Jul 26 '16 at 04:53
  • 6
    Got ```'module' object has no attribute '__version__'``` when ```python -c 'import tensorflow as tf; print(tf.__version__)'``` – user3768495 Dec 09 '16 at 02:53
  • @user3768495 Hmm, interesting, let me test that later. Meanwhile, the `pip list` way should work if you used `pip` for installation. – edwinksl Dec 09 '16 at 03:14
  • ```pip list | grep tensorflow``` worked tho. My version is 0.5.0. Maybe it's toooo old to have the '__version__' attribute? – user3768495 Dec 09 '16 at 03:26
  • 1
    @user3768495 If you installed Tensorflow with VirtualEnv you need to activate the environment and that must be done for any new console you open (source ~/tensorflow/bin/activate). Once you do that you can retrieve your tensorflow version (pip list | grep tensorflow) – Nestor Urquiza Mar 18 '18 at 14:29
  • @Nestor Urquiza do you mean anaconda console under Linux ? – Qbik Nov 19 '18 at 16:10
  • 5
    for Windows CMD you need to use double quote `"` instead of `'`: `python3 -c "import tensorflow as tf; print(tf.__version__)"` – user924 Dec 15 '18 at 19:46
  • I tried both pip and python, i.e. `pip list | grep tensorflow` and `python -c 'import tensorflow as tf; print(tf.__version__)'`. But these two commands give me two different outputs. For pip, it shows `tensorflow 1.12.0`. For python, it shows `1.10.0`. Right before using two two commands to check the version, I used `pip install tensorflow=1.10.0`. Before running this install command, I believe my system was installed with 1.12.0. But, how come after running this install command, could these two version checking commands give different answers? Or, did I miss anything there? – Jack Chan Jan 24 '19 at 02:12
  • `py -3 -c 'import tensorflow as tf; print(tf.__version__)'` worked in my case. – Jithin Jude Apr 15 '19 at 06:42
  • 2
    [jalal@goku examples]$ python -c 'import tensorflow as tf; print(tf.__version__)' Traceback (most recent call last): File "", line 1, in AttributeError: module 'tensorflow' has no attribute '__version__' – Mona Jalal Dec 08 '19 at 01:41
100

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__

Community
  • 1
  • 1
Salvador Dali
  • 182,715
  • 129
  • 638
  • 708
61

If you have installed via pip, just run the following

$ pip show tensorflow
Name: tensorflow
Version: 1.5.0
Summary: TensorFlow helps the tensors flow
Trideep Rath
  • 3,014
  • 19
  • 12
32
import tensorflow as tf

print(tf.VERSION)
Richard
  • 44,865
  • 24
  • 144
  • 216
Bilal
  • 497
  • 5
  • 7
22

For python 3.6.2:

import tensorflow as tf

print(tf.version.VERSION)
Richard
  • 44,865
  • 24
  • 144
  • 216
gd1
  • 545
  • 5
  • 18
19

If you're using anaconda distribution of Python,

$ conda list | grep tensorflow
tensorflow    1.0.0       py35_0    conda-forge

To check it using Jupyter Notebook (IPython Notebook)

In [1]: import tensorflow as tf
In [2]: tf.__version__
Out[2]: '1.0.0'
kmario23
  • 42,075
  • 12
  • 123
  • 130
8

I installed the Tensorflow 0.12rc from source, and the following command gives me the version info:

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

The following figure shows the output:

enter image description here

Yuan Ma
  • 808
  • 2
  • 10
  • 23
6

On Latest TensorFlow release 1.14.0

tf.VERSION

is deprecated, instead of this use

tf.version.VERSION

ERROR:

WARNING: Logging before flag parsing goes to stderr.
The name tf.VERSION is deprecated. Please use tf.version.VERSION instead.
Jitesh Mohite
  • 15,430
  • 6
  • 71
  • 84
6

For knowing any version of the python library then if your library is installed using the pip then use the following command.

pip show tensorflow

The Output of the above command will be shown below:-

Name: tensorflow
Version: 2.3.0
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: packages@tensorflow.org
License: Apache 2.0
Location: /usr/local/lib/python3.6/dist-packages
Requires: astunparse, wheel, keras-preprocessing, gast, tensorflow-estimator, opt-einsum, tensorboard, protobuf, absl-py, six, wrapt, termcolor, numpy, grpcio, scipy, google-pasta, h5py
Required-by: fancyimpute
5

To get more information about tensorflow and its options you can use below command:

>> import tensorflow as tf
>> help(tf)
0xAliHn
  • 16,415
  • 20
  • 78
  • 97
3

Easily get KERAS and TENSORFLOW version number --> Run this command in terminal:

[username@usrnm:~] python3

>>import keras; print(keras.__version__)

Using TensorFlow backend.

2.2.4

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

1.12.0

Kevin Patel
  • 321
  • 3
  • 8
2

The tensorflow version can be checked either on terminal or console or in any IDE editer as well (like Spyder or Jupyter notebook, etc)

Simple command to check version:

(py36) C:\WINDOWS\system32>python
Python 3.6.8 |Anaconda custom (64-bit)

>>> import tensorflow as tf
>>> tf.__version__
'1.13.1'
rsnayak
  • 192
  • 1
  • 6
1
python -c 'import tensorflow as tf; print(tf.__version__)'  # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)'  # for Python 3

Here -c represents program passed in as string (terminates option list)

Akash Kandpal
  • 2,074
  • 20
  • 23
1

Tensorflow version in Jupyter Notebook:-

!pip list | grep tensorflow
kamran kausar
  • 2,569
  • 18
  • 14
1

If you have TensorFlow 2.x:

sess = tf.compat.v1.Session(config=tf.compat.v1.ConfigProto(log_device_placement=True))

  • 1
    Why provide a partial answer to a 4 y/o question that already has multiple answers with very good acceptance? Does this provide any new knowledge? – Amitai Irron Jun 05 '20 at 15:27
  • @amitai, all packages and tools upgrade, and most of the time, errors are coming back. Old correct solutions may not work today. – Jade Cacho Jun 21 '20 at 14:58
0

Another variation, i guess :P

python3 -c 'print(__import__("tensorflow").__version__)'

Nam Vu
  • 1,304
  • 1
  • 8
  • 19