python-tensorflowHow can I check the version of Python, Tensorflow, and Numpy I am using?
To check the version of Python, Tensorflow, and Numpy you are using, you can use the following code:
import sys
import tensorflow as tf
import numpy as np
print("Python version:", sys.version)
print("Tensorflow version:", tf.__version__)
print("Numpy version:", np.__version__)
Output example
Python version: 3.7.6 (default, Jan 8 2020, 19:59:22)
[GCC 7.3.0]
Tensorflow version: 2.1.0
Numpy version: 1.18.1
The code consists of three parts:
import sysimports thesysmodule, which contains system-specific parameters and functions.import tensorflow as tfimports the Tensorflow library and assigns it to thetfalias.import numpy as npimports the Numpy library and assigns it to thenpalias.
The following three lines print the version of Python, Tensorflow, and Numpy respectively:
print("Python version:", sys.version)
print("Tensorflow version:", tf.__version__)
print("Numpy version:", np.__version__)
For more information on how to check the version of Python, Tensorflow, and Numpy, please refer to this page.
More of Python Tensorflow
- How can I check the compatibility of different versions of Python and TensorFlow?
- How can I use Python and TensorFlow to handle illegal hardware instructions in Zsh?
- How do I resolve a SymbolAlreadyExposedError when the symbol "zeros" is already exposed as () in TensorFlow Python util tf_export?
- How do I use the Xception model in TensorFlow with Python?
- How can I use TensorFlow Lite with XNNPACK in Python?
- How can I use Tensorflow 1.x with Python 3.8?
- How can I use Python and TensorFlow to create an XOR gate?
- How do I install Tensorflow with a Python wheel (whl) file?
- How do I check the version of Python Tensorflow I'm using?
- How do I test a Python TensorFlow example?
See more codes...