如何检查安装了哪个版本的 Keras?
Posted
技术标签:
【中文标题】如何检查安装了哪个版本的 Keras?【英文标题】:How to check which version of Keras is installed? 【发布时间】:2018-02-15 13:59:21 【问题描述】:问题和标题一样。
我不喜欢打开 Python,我使用 MacOS 或 Ubuntu。
【问题讨论】:
【参考方案1】:Python 库作者将版本号放在<module>.__version__
中。您可以通过在命令行上运行它来打印它:
python -c 'import keras; print(keras.__version__)'
如果是 Windows 终端,请用双引号将 sn-p 括起来,如下所示
python -c "import keras; print(keras.__version__)"
【讨论】:
对于 python3 版本使用这个 ....python3 -c 'import keras; print(keras.__version__)'
【参考方案2】:
你可以写:
python
import keras
keras.__version__
【讨论】:
【参考方案3】:最简单的方法是使用pip
命令:
pip list | grep Keras
【讨论】:
【参考方案4】:检查keras版本的简单命令:
(py36) C:\WINDOWS\system32>python
Python 3.6.8 |Anaconda custom (64-bit)
>>> import keras
Using TensorFlow backend.
>>> keras.__version__
'2.2.4'
【讨论】:
OP 表示 Linux 或 MacOS。【参考方案5】:pip 显示张量流
C:\>pip show tensorflow
Name: tensorflow
Version: 2.4.1
Summary: TensorFlow is an open source machine learning framework for
everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: packages@tensorflow.org
License: Apache 2.0
Requires: google-pasta, wheel, absl-py, flatbuffers, numpy, astunparse, opt-
einsum, six, termcolor, typing-extensions, wrapt, grpcio, tensorboard,
protobuf, tensorflow-estimator, gast, h5py, keras-preprocessing
Required-by:
同样的方法可以尝试
pip show keras
如果已安装,则会提供详细信息。
【讨论】:
【参考方案6】:对于终端,运行:(使用python3
更改Python3 的版本)
python -c 'import keras; print(keras.__version__)'
或者如果你想检查内部代码,包括:
import keras
print(keras.__version__)
【讨论】:
以上是关于如何检查安装了哪个版本的 Keras?的主要内容,如果未能解决你的问题,请参考以下文章
我如何知道谁在 Centos 6 上安装了哪个 CPAN 模块以及何时安装?