Identifying the Installed Version of TensorFlow on My System

Posted by

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

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

If you are a TensorFlow user, it is important to know which version of TensorFlow is installed on your system. You may need this information for troubleshooting purposes or to ensure compatibility with the code you are running.

Using Python

The easiest way to check the version of TensorFlow installed on your system is by using Python. Here is a simple code snippet that you can run in a Python environment:

        
            import tensorflow as tf

            print("TensorFlow version:", tf.__version__)
        
    

By running this code, you will see the version of TensorFlow printed to the console. This method works for both TensorFlow 1.x and TensorFlow 2.x versions.

Using Command Line

If you prefer using the command line interface, you can also check the TensorFlow version by running the following command:

        
            pip show tensorflow
        
    

This command will display detailed information about the TensorFlow package installed on your system, including the version number.

Conclusion

Knowing the version of TensorFlow installed on your system is crucial for ensuring compatibility and troubleshooting issues. By following the simple steps outlined above, you can easily find out which version of TensorFlow is running on your machine.