如何检查安装了哪个版本的Keras?


75

问题和标题说的一样。

我不想打开Python,而是使用MacOS或Ubuntu。

Answers:


137

Python库作者将版本号放入<module>.__version__。您可以通过在命令行上运行它来打印它:

python -c 'import keras; print(keras.__version__)'

如果是Windows终端,则将代码段用双引号括起来,如下所示

python -c "import keras; print(keras.__version__)"

9
对于python3版本,请使用此....python3 -c 'import keras; print(keras.__version__)'
Akash Kandpal '18

34

你可以写:

python
import keras
keras.__version__

16

最简单的方法是使用pip命令:

pip list | grep Keras

5

检查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。
罗伯特
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.