How to check which version of Keras is installed?

后端 未结 4 1615
暗喜
暗喜 2021-02-01 00:12

Question is the same as the title says.

I prefer not to open Python and I use either MacOS or Ubuntu.

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-01 00:55

    Simple command to check keras version:

    (py36) C:\WINDOWS\system32>python
    Python 3.6.8 |Anaconda custom (64-bit) 
    
    >>> import keras
    Using TensorFlow backend.
    >>> keras.__version__
    '2.2.4'
    

提交回复
热议问题