我需要找到我安装了哪个版本的TensorFlow。我使用的是Ubuntu 16.04长期支持。
当前回答
另一种变化,我猜:P
python3 -c 'print(__import__("tensorflow").__version__)'
其他回答
要获得更多关于tensorflow及其选项的信息,您可以使用以下命令:
>> import tensorflow as tf
>> help(tf)
对于python 3.6.2:
import tensorflow as tf
print(tf.version.VERSION)
如果您已经通过pip安装,只需运行以下命令
$ pip show tensorflow
Name: tensorflow
Version: 1.5.0
Summary: TensorFlow helps the tensors flow
我从源代码安装了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
回显如下图所示:
另一种变化,我猜:P
python3 -c 'print(__import__("tensorflow").__version__)'
推荐文章
- 将Pandas或Numpy Nan替换为None以用于MysqlDB
- 使用pandas对同一列进行多个聚合
- 使用Python解析HTML
- django MultiValueDictKeyError错误,我如何处理它
- 如何在for循环期间修改列表条目?
- 我如何在Django中创建一个鼻涕虫?
- 没有名为'django.core.urlresolvers'的模块
- 蟒蛇导出环境文件
- Django - makemigrations -未检测到任何更改
- SQLAlchemy:引擎、连接和会话差异
- 在Python Pandas中删除多个列中的所有重复行
- 更改pandas DataFrame中的特定列名
- 将Pandas多索引转换为列
- 熊猫在每组中获得最高的n个记录
- 熊猫数据帧得到每组的第一行