我需要找到我安装了哪个版本的TensorFlow。我使用的是Ubuntu 16.04长期支持。
当前回答
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最新版本1.14.0中
特遣部队。版本
已弃用,而不是这种用法
tf.version.VERSION
错误:
WARNING: Logging before flag parsing goes to stderr.
The name tf.VERSION is deprecated. Please use tf.version.VERSION instead.
几乎python中的每个普通包都将变量.__version__赋值给当前版本。因此,如果你想找到某些软件包的版本,你可以做以下工作
import a
a.__version__
对于张量流是这样的
import tensorflow as tf
tf.version.VERSION
对于tensorflow的旧版本(低于0.10),请使用tf.__version__
轻松获取KERAS和TENSORFLOW版本号——> 在terminal中执行如下命令:
[username@usrnm: ~] python3
> > import努力;打印(大声__version__)。
使用TensorFlow后端。
2.2.4
>>导入tensorflow作为tf;打印(tf.__version__)
1.12.0
我从源代码安装了Tensorflow 0.12rc,下面的命令给了我版本信息:
python -c 'import tensorflow as tf; print(tf.__version__)' # for Python 2
python3 -c 'import tensorflow as tf; print(tf.__version__)' # for Python 3
回显如下图所示:
这取决于你是如何安装TensorFlow的。我将使用TensorFlow安装说明中使用的相同标题来构造这个答案。
Pip安装
Run:
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 for python2或pip3 list | grep tensorflow for python3也将显示安装的tensorflow版本。
Virtualenv安装
Run:
python -c 'import tensorflow as tf; print(tf.__version__)' # for both Python 2 and Python 3
pip list | grep tensorflow也会显示安装的tensorflow版本。
例如,我已经在Python 3的virtualenv中安装了TensorFlow 0.9.0。所以,我得到:
$ python -c 'import tensorflow as tf; print(tf.__version__)'
0.9.0
$ pip list | grep tensorflow
tensorflow (0.9.0)
推荐文章
- 将Pandas或Numpy Nan替换为None以用于MysqlDB
- 使用pandas对同一列进行多个聚合
- 使用Python解析HTML
- django MultiValueDictKeyError错误,我如何处理它
- 如何在for循环期间修改列表条目?
- 我如何在Django中创建一个鼻涕虫?
- 没有名为'django.core.urlresolvers'的模块
- 蟒蛇导出环境文件
- Django - makemigrations -未检测到任何更改
- SQLAlchemy:引擎、连接和会话差异
- 在Python Pandas中删除多个列中的所有重复行
- 更改pandas DataFrame中的特定列名
- 将Pandas多索引转换为列
- 熊猫在每组中获得最高的n个记录
- 熊猫数据帧得到每组的第一行