How to find which TensorFlow Version is installed in my system?

Hi Everyone,

As of Fresher to the TensorFlow I am unable to find which version of Tensorflow is installed in my system.

Does anybody know how to find this?

Thanks,
Kimberly

Just google.


BTW, this is pytorch discussion

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

Hi @alwynmathew

Thanks for your reply… I will try to work on it…