How to find which version of TensorFlow is installed in my system?

前端 未结 16 2004
轮回少年
轮回少年 2020-11-30 17:00

I need to find which version of TensorFlow I have installed. I\'m using Ubuntu 16.04 Long Term Support.

16条回答
  •  独厮守ぢ
    2020-11-30 17:43

    The tensorflow version can be checked either on terminal or console or in any IDE editer as well (like Spyder or Jupyter notebook, etc)

    Simple command to check version:

    (py36) C:\WINDOWS\system32>python
    Python 3.6.8 |Anaconda custom (64-bit)
    
    >>> import tensorflow as tf
    >>> tf.__version__
    '1.13.1'
    

提交回复
热议问题