我需要找到我安装了哪个版本的TensorFlow。我使用的是Ubuntu 16.04长期支持。
当前回答
我从源代码安装了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__)'
Tensorflow的版本可以通过以下简单的步骤在jupyter笔记本上检查。
import tensorflow as tf
print(tf.__version__) # for Python 3
如果你有TensorFlow 2.x:
sess =tf. compat_v1 . session (config=tf. compat_v1 . configproto (log_device_placement=True))
几乎python中的每个普通包都将变量.__version__赋值给当前版本。因此,如果你想找到某些软件包的版本,你可以做以下工作
import a
a.__version__
对于张量流是这样的
import tensorflow as tf
tf.version.VERSION
对于tensorflow的旧版本(低于0.10),请使用tf.__version__
tensorflow版本可以在终端或控制台或任何IDE编辑器(如Spyder或Jupyter notebook等)上进行检查。
检查版本的简单命令:
(py36) C:\WINDOWS\system32>python
Python 3.6.8 |Anaconda custom (64-bit)
>>> import tensorflow as tf
>>> tf.__version__
'1.13.1'
推荐文章
- 如何排序mongodb与pymongo
- 不可变与可变类型
- 列表是线程安全的吗?
- 操作系统。makdirs在我的路径上不理解“~”
- 如何在Django模板中获得我的网站的域名?
- 在django Forms中定义css类
- 如何在Python中scp ?
- 如何构建和使用谷歌TensorFlow c++ api
- Numpy Max vs amax vs maximum
- 我应该在.gitignore文件中添加Django迁移文件吗?
- 每n行有熊猫
- 如何合并2 JSON对象从2个文件使用jq?
- 实例属性attribute_name定义在__init__之外
- 如何获取在Python中捕获的异常的名称?
- 在Ubuntu上安装Node.js