How to find which version of TensorFlow is installed in my system?

前端 未结 16 2046
轮回少年
轮回少年 2020-11-30 17:00

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

16条回答
  •  长情又很酷
    2020-11-30 17:55

    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

提交回复
热议问题