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 do I resolve a SymbolAlreadyExposedError when the symbol "zeros" is already exposed as () in TensorFlow Python util tf_export?
- How can I use Python and TensorFlow to implement YOLO object detection?
- How can I use Python and TensorFlow to handle illegal hardware instructions in Zsh?
- How can I use TensorFlow Lite with XNNPACK in Python?
- How can I check the compatibility of different versions of Python and TensorFlow?
- How can I use TensorFlow 2.x to optimize my Python code?
- ¿Cómo implementar reconocimiento facial con TensorFlow y Python?
- How do I install Tensorflow with a Python wheel (whl) file?
- How do I use Python TensorFlow 1.x?
- How can I troubleshoot a TensorFlow Python Framework ResourceExhaustedError graph execution error?
See more codes...