Skip to content

How To Verify The Python 3 Version Installed

To check that you have Python 3.7 or higher installed open a command window and type:

python3 -V

For Windows, you may need to type:

python -V

The Python version will be displayed:

python3
Python 3.7.2 (default, Dec 31 2018, 14:25:33)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

For Windows users, this may look something like:


C:\Users\Alan>python
Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

If you need to install Python 3.7 or greater, please go to the next section.



Copyright (C) 2020 Alan Yorinks. All Rights Reserved.