如何在计算机上找到TensorFlow的版本?

时间:2016-08-18 17:45:47

标签: tensorflow

在我的计算机上查找TensorFlow版本的命令是什么?我不久前在我的电脑上安装了TensorFlow,并希望确保我有最新版本。

7 个答案:

答案 0 :(得分:35)

import tensorflow as tf
tf.__version__

答案 1 :(得分:8)

pip list | grep tensorflow

您可以通过替换' tensorflow'找到任何已安装库的版本。与图书馆名称。

答案 2 :(得分:3)

在jupyter-Notebook / Pycharm中使用以下代码检查tensorflow版本。

import tensorflow as tf

print(tf.version.VERSION)

答案 3 :(得分:0)

update posts set pos = 'right' where pos = 'below'

答案 4 :(得分:0)

$ source activate tensorflow
$ pip show tensorflow
Name: tensorflow
Version: 1.9.0
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: opensource@google.com
License: Apache 2.0

答案 5 :(得分:0)

您可以尝试以下方法:

pip freeze|grep tensorflow

答案 6 :(得分:-1)

$ import tensorflow as tf
$ tf.test.is_built_with_cuda()
True
$ tf.test.is_gpu_available(cuda_only=False, min_cuda_compute_capability=None)
False