How To Check Whether Python Is Installed On Linux Or Not?
Dec 29, 2022
Python is a programming language that lets you work quickly and integrate systems more effectively.
To check whether python(https://www.python.org/)is installed on your Linux system or not, to check that open your Linux terminal and type the given command:
python -V
If you are using the latest Linux OS then you get like the above image then there is no python2 installed, now try another command:
python3 -V
Now you can see your python3 version, my python3 version is python3.8.10
Thank You.