Table of Contents
Find out below.
How to Read Python Versions
This practical guide explains how to check python version on windows, mac and linux with clear steps and useful context. It also covers common requirements, potential problems, and the details that can help you get better results.
Python 3.10.4
In the above example, the number '3' refers to the major version, the number 10 indicates the minor version, and the last digit, '4', indicates the micro version of Python.
Major versions of Python are often not compatible with each other, but minor versions are.
Check Python Version on Windows
On a Windows PC, you can use the operating system's built-in PowerShell utility to check the installed Python version number.
To get started, open the 'Start' menu and search for the keyword 'Windows PowerShell' (without the quotes). Then click on the corresponding result returned.

When PowerShell opens, type the following command and press Enter:
python --version

PowerShell will immediately display the version of Python installed on your PC.

View Python Version on Mac
On a Mac, you'll use the Terminal app that comes pre-installed on your system to see the version of Python available.
Launch Terminal by opening Spotlight (using the keyboard shortcut Command + Space), then search for the keyword 'Terminal' and click on the corresponding result.
On the Terminal window that opens, type the following command and press Enter:
python --version
Your current Python version will be displayed.
Check Python Version on Linux
To check the version of Python installed on Linux, open a Terminal window (you can use the keyboard shortcut Ctrl + Alt + T), type the following command and press Enter:
python --version
Terminal will output your current Python version.
What If Your Computer Has Multiple Versions of Python Installed?
You can install multiple versions of Python at the same time on your computer. This is because some applications use a newer version of Python 3, while others still run on Python 2.7. In this case, to find the version of each Python version, you would use the following commands:
To check the version of Python 2.7, use the following command:
python --version
For Python 3, use the following command:
python3 --version
All is as simple as that, wish you success!
Conclusion
Understanding Python makes it easier to compare options, avoid common mistakes, and apply the information in this guide more effectively. Review the relevant requirements before making changes or choosing a solution.
FAQ
How do you check python version on windows, mac and linux?
Follow the steps in this guide in order, confirm the required settings or tools, and verify the result before making additional changes.
Is it safe to check python version on windows, mac and linux?
It is generally safe when you follow the recommended instructions, use trusted tools, and avoid changing settings you do not understand.
What should you do if the process does not work?
Recheck the requirements, restart the device or application when appropriate, and review each step for missed settings or compatibility issues.
Reader Comments 0
Sign in with email or Google to join the discussion.