Answers:
这取决于您安装TensorFlow的方式。我将使用TensorFlow的安装说明所用的相同标题来组织此答案。
跑:
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
请注意,在某些Linux发行版中,它python
是符号链接的/usr/bin/python3
,因此在这些情况下,请使用python
代替python3
。
pip list | grep tensorflow
适用于Python 2或pip3 list | grep tensorflow
适用于Python 3的版本还将显示已安装的Tensorflow的版本。
跑:
python -c 'import tensorflow as tf; print(tf.__version__)' # for both Python 2 and Python 3
pip list | grep tensorflow
还将显示已安装的Tensorflow的版本。
例如,我已经在virtualenv
Python 3的a中安装了TensorFlow 0.9.0 。因此,我得到:
$ python -c 'import tensorflow as tf; print(tf.__version__)'
0.9.0
$ pip list | grep tensorflow
tensorflow (0.9.0)
git rev-parse HEAD
'module' object has no attribute '__version__'
时python -c 'import tensorflow as tf; print(tf.__version__)'
"
而不是'
:python3 -c "import tensorflow as tf; print(tf.__version__)"
python中几乎每个普通软件包都将变量.__version__
或分配VERSION
给当前版本。因此,如果要查找某些软件包的版本,可以执行以下操作
import a
a.__version__ # or a.VERSION
对于张量流它将是
import tensorflow as tf
tf.VERSION
对于旧版本的tensorflow(低于0.10),请使用 tf.__version__
顺便说一句,如果您打算安装TF,请使用conda而不是pip进行安装
如果您是通过pip安装的,则只需运行以下命令
$ pip show tensorflow
Name: tensorflow
Version: 1.5.0
Summary: TensorFlow helps the tensors flow
pip show tensorflow-gpu
适用于GPU版本。更好的是,只是做pip list | grep tensorflow
。
import tensorflow as tf
print(tf.VERSION)
要获取有关tensorflow及其选项的更多信息,可以使用以下命令:
>> import tensorflow as tf
>> help(tf)
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表示以字符串形式传入的程序(终止选项列表)
如果您具有TensorFlow 2.x:
sess = tf.compat.v1.Session(config = tf.compat.v1.ConfigProto(log_device_placement = True))
pip show [package name]
如:pip show tensorflow
,pip show numpy
等等