我需要找到我安装了哪个版本的TensorFlow。我使用的是Ubuntu 16.04长期支持。


当前回答

Tensorflow版本在Jupyter Notebook:-

!pip list | grep tensorflow

其他回答

如果您已经通过pip安装,只需运行以下命令

$ pip show tensorflow
Name: tensorflow
Version: 1.5.0
Summary: TensorFlow helps the tensors flow

打印人类可读格式的python版本

python -c 'import sys; print(".".join(map(str, sys.version_info[:3])))'

几乎python中的每个普通包都将变量.__version__赋值给当前版本。因此,如果你想找到某些软件包的版本,你可以做以下工作

import a
a.__version__

对于张量流是这样的

import tensorflow as tf
tf.version.VERSION

对于tensorflow的旧版本(低于0.10),请使用tf.__version__

import tensorflow as tf

print(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

这里-c表示作为字符串传入的程序(终止选项列表)