问题与标题所说的相同。
我不想打开Python,而是使用MacOS或Ubuntu。
答案 0 :(得分:91)
Python库作者将版本号放在<module>.__version__
中。您可以通过在命令行上运行它来打印它:
python -c 'import keras; print(keras.__version__)'
如果是Windows终端,请用下面的双引号括起片段
python -c "import keras; print(keras.__version__)"
答案 1 :(得分:17)
你可以写:
python
import keras
keras.__version__
答案 2 :(得分:2)
最简单的方法是使用pip
命令:
pip list | grep Keras
答案 3 :(得分:2)
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
如果已安装,则会提供详细信息。
答案 4 :(得分:0)
用于检查keras版本的简单命令:
(py36) C:\WINDOWS\system32>python
Python 3.6.8 |Anaconda custom (64-bit)
>>> import keras
Using TensorFlow backend.
>>> keras.__version__
'2.2.4'