Featured
- Get link
- X
- Other Apps
how to check your python version in cmd ?
To check the version of Python that you have installed on your Windows machine, follow these steps:
- Open the Command Prompt by typing "cmd" in the Start menu search bar.
- In the Command Prompt window, type "python -V" and press Enter.
This will print the version number of the Python executable to the console. For example, if you have Python 3.8.5 installed, you will see the following output:
Python 3.8.5
If you have multiple versions of Python installed on your machine, you can specify the version you want to use by typing "python3" or "python3.8" followed by "-V" (e.g. "python3.8 -V").
Note: If you don't have Python installed on your machine, or if you have it installed but the "python" command is not recognized, you will see an error message similar to "python' is not recognized as an internal or external command, operable program or batch file." In this case, you will need to install Python or add it to your system path before you can use the "python" command
- Get link
- X
- Other Apps
Comments
Post a Comment