HOW TO CHECK YOUR PYTHON VERSION

5/5 - (14 votes)

To check your Python version, run python ‐‐version in your command line (Windows), shell (Mac), or terminal (Linux/Ubuntu). To check your Python version in your script, run import sys to get the module and use sys.version to find detailed version information in your code.

Check Python Version [Win/Linux/MacOS] Infographic

Let’s get a quick overview of the different ways to check your Python version in all operating systems and environments. This may be all you need to know:

CommandsWhere?What?Example Output
python ‐‐version or
python -V or
python -VV
TerminalMac/Linux/WinPython 3.7.2
import sys
sys.version
Python ScriptInformation string'3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018,
23:09:28) [MSC v.1916 64 bit (AMD64)]'
sys.version_infoPython scriptVersion info tuplesys.version_info(major=3, minor=7, micro=2, releaselevel='final', serial=0)
import platform
platform.python_version()
Python scriptShort string info'3.7.2'
platform.python_version_tuple()Python scriptShort tuple info('3', '7', '2')

In the following screenshot, you can see how I checked the Python version in my Windows PowerShell:

Do you want to develop the skills of a well-rounded Python professional—while getting paid in the process? Become a Python freelancer and order your book Leaving the Rat Race with Python on Amazon (Kindle/Print)!

Leaving the Rat Race with Python Book

Overview

When Guido van Rossum released the first viable Python version 0.9.0 in 1991, he couldn’t have expected (by a long shot) that he was on the verge of creating the most influential programming language in the world. Python has a bright future: every new Python version adds new features to the programming language.

In the following video and blog tutorial, I’ll show you how to check your Python version—no matter your operating system (Windows, macOS, Linux, Ubuntu) and programming framework (Jupyter).

You can play the video while you scroll down to read the step-by-step instructions on how to check your Python version.

How to Check Your Python Version? [Mac/Linux/Win/Python]

If you’re like me ten years ago, you need to Google important Python commands again and again. Fortunately, I found a simple and effective (and free) way to improve my Python skills.

And so can you: learning with cheat sheets.

Join my email academy and download your free Python cheat sheets about various topics such as keywords, object-orientation, NumPy, and data structures.

Download your FREE Python cheat sheets and print them to your office wall (link to my email academy signup page on this blog)!

Environments

This general method works across all major operating systems (Windows, Linux, and macOS).

OS & EnvironmentMethod
Win10, Win7Open command line and run python -V or python ‐‐version
MacOS, Linux, UbuntuOpen terminal and run python -V or python ‐‐version
Python Shell, Juypter NotebookInteractive mode:
>>> import sys
>>> sys.version
Python Editor, Juypter NotebookNormal mode:
import sys
print(sys.version)

The table shows you how different environments call for different commands to check your Python version.

You may have the following question:

How to open your command line or terminal?

  • Windows:  Hit shortcut Win+R, type powershell, hit OK.
  • MacOS:  Hit shortcut Cmd+Space, type terminal, hit OK.
  • Linux:  Hit shortcut Ctrl+Alt+T.

The Python version output consists of three numbers major:minor:micro. For example, version 3.7.2 means that

  • the major version is 3,
  • the minor version is 7, and
  • the micro version is 2.

[ATTENTION] Different major versions are NOT fully compatible. Different minor versions are compatible.

For example, you can execute code written in Python 3.6.4 in Python 3.7.2 because they are the same major version — Python 3. But you cannot execute code written in Python 2.7.4 in Python 3.7.2 because they are different major versions.

πŸ’‘ Note: new minor versions can add changes to the language. For example, in Python 3.8 they introduced the reversed() function with dictionaries. You cannot use the reversed() function in older versions of Python. But the vast majority of the language is the same.

Let’s dive into the exact steps to check your Python version in any environment.

I tried to figure out any environment you may be interested in. But if you don’t find yours, please let me know and I’ll add your specific environment, too.

Check Which Python Version in Script (Exact Steps)

Sometimes, you want to check Python’s version in your Python program.

To achieve this, simply import the sys module and print the sys.version attribute to your Python shell:

>>> import sys
>>> print(sys.version)
3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)]

Check Python Version Jupyter (Exact Steps)

Three steps to check the Python version in a Jupyter notebook.

  1. Open the Jupyter notebook: type jupyter notebook in your terminal/console.
  2. Write the following Python code snippet in a code cell:
from platform import python_version
print(python_version())

3. Execute the script.

As an alternative, you can also use the following Python code snippet to check your Python version in a Jupyter notebook:

>>> import sys
>>> sys.version

Here is a screenshot on my computer:

Check Python Version Windows 10 (Exact Steps)

Three steps to check the Python version on your Win 10 operating system:

  1. Open the Powershell application: Press the Windows key to open the start screen. In the search box, type β€œpowershell”. Press enter.
  2. Execute command: type python ‐‐version and press enter.
  3. The Python version appears in the next line below your command.

Check Python Version Windows 7 (Exact Steps)

Three steps to check the Python version on your Win 7 operating system.

  1. Open the command prompt application: Press the Windows key to open the start screen. In the search box type β€œcommand”. Click on the command prompt application.
  2. Execute command: type python ‐‐version and press Enter.
  3. The Python version appears in the next line right below your command.

Check Python Version Mac (Exact Steps)

Four steps to check the Python version on your Mac operating system.

  1. Press CMD + Space to open Spotlight.
  2. Type β€œterminal” and press enter.
  3. Execute command: type python ‐‐version or python -V and press Enter.
  4. The Python version appears in the next line below your command.

Check Python Version Linux (Exact Steps)

Three steps to check the Python version on your Linux operating system.

  1. Open the terminal application (for example, bash).
  2. Execute command: type in python ‐‐version or python -V and press Enter.
  3. The Python version appears in the next line below your command.

Check Python Version Ubuntu (Exact Steps)

Four steps to check the Python version on your Ubuntu operating system.

  1. Open Dash: click the upper left symbol.
  2. Open terminal: type “terminal“, click on the terminal app.
  3. Execute command: type python ‐‐version or python -V and press Enter.
  4. The Python version appears in the next line right below your command.

Do you need to google important Python keywords again and again?

Simply download this popular Python cheat sheet, print the high-resolution PDF, and pin it to your office wall:

Check Your Python Version in Anaconda (Exact Steps)

You can choose from different alternatives.

  • To check your Anaconda version, run conda -V or conda --version in your anaconda prompt. You can open the anaconda prompt by searching for “anaconda prompt” in your OS’s search field.
  • An alternative to get your Anaconda version is to run conda list anaconda.
  • The shorter command conda list lists the name, version, and build details of your installed packages.
  • To learn about your environment details, run conda info with the optional flag ‐‐envs to see all your environments.
  • To check your Python version, run python -V or python ‐‐version in your terminal.

Related Material: Please find more detailed information about setting up your environment here. You can download an informative Anaconda cheat sheet here.

Check Your Python Version in Spyder (Exact Steps)

In your Spyder code editor, it’s even simpler to check your Python version.

Just run any script and the version information will appear in the first line before the output of your script.

[History] What are the Different Python Versions?

Python has three main versions: version 1, version 2, and version 3. Version 4 is currently (2020) under development.

Here is the version history from Wikipedia and the official docs.

Python 3.0 – December 3, 2008

Python 2.0 – October 16, 2000

Python 1.0 – January 1994

Python 0.9.0 – February 20, 1991

  • Python 0.9.1 ― released on February 1991
  • Python 0.9.2 ― released in Autumn, 1991
  • Python 0.9.4 ― released on December 24, 1991
  • Python 0.9.5 ― released on January 2, 1992
  • Python 0.9.6 ― released on April 6, 1992
  • Python 0.9.8 ― released on January 9, 1993
  • Python 0.9.9 ― released on July 29, 1993

As there are some significant differences in syntax, you should always install the latest version in Python. Keep yourself updated on the official Python website here.

πŸ‘‰ Recommended Tutorial: How to Update Python?

How to Upgrade to a Newer Version?

If you are not using a virtual environment, go to python.org/downloads to download and install whatever version you need. It’s the easiest way to upgrade Python.

But now you’ll run into the following problem: how do I run a specific Python version? Check out this StackOverflow answer to learn the exact steps.

Or you can make your life easier by using virtual environments.

These let you have multiple versions of Python installed on your system. Plus, you can switch between them instantaneously.

One option is to use the built-in module venv. If you’re a Data Scientist, the industry standard is Anaconda.

Installing and upgrading different Python versions is easy when you use virtual environments. For a full tutorial of virtual environments, read over our introductory Finxter blog article.

How to Check if Python 3 is Installed?

If you’ve installed multiple installations of Python, running python ‐‐version may give you only the version of Python 2.

To check which version of Python 3 is installed on your computer, simply run the command python3 ‐‐version instead of python --version.

How to Check Python Version – Detailed

Not only does Python have major, minor and micro versions. Each of those versions has further versions, namely the release level and serial.

These are displayed when you run

>>> import sys
>>> sys.version_info
sys.version_info(major=3, minor=8, micro=0, releaselevel='final', serial=0)

In the above code, I am running Python 3.8.0.

Most of the time, you will only care about the major, minor and micro releases. Release level and serial are usually for the core Python developer team to work on changes to the language.

The possible release levels are β€˜alpha’, β€˜beta’, β€˜candidate’, or β€˜final’.

  • Alpha contains the first updates made to the language.
  • Beta means the language can be tested with some users but still won’t work perfectly. This is where the phrase β€˜beta testers’ comes from.
  • Candidate has only a few small bugs left to fix.
  • Final is the last version and the one released to the general public.

If you want to try out new features before anyone else, you can download these release levels.

However, if you just want a version of Python that works, you should choose β€˜final’. When you download any version of Python, it will be a β€˜final’ release unless stated otherwise.

Serial is for the smallest changes. The Python-Dev team increments it as they make changes to the alpha, beta and candidate versions.

All final versions have serial=0. They add future changes to the next major/minor/micro releases.

How to Make Sure My Script Runs a Specific Python Version?

Let’s say you’ve just installed Python 3.8.

Your script, my_file.py, uses a brand new feature: reversed() when iterating over a dictionary.

For other people to run this script, they must also run Python 3.8. So you should put a check at the start to let other users know this.

We do this by adding an assert statement at the top of my_file.py

# my_file.py
import sys
assert sys.version_info >= (3, 8)

my_dict = dict(a=1, b=2, c=3)
for key in reversed(my_dict):
    print(key)

The assert statement raises an AssertionError if the statement is False. If the statement is True, the script continues to run.

For example, if I am running Python 3.7 and execute my_file.py from the terminal, this happens:

# Running Python 3.7
$ python my_file.py
Traceback (most recent call last):
  File "my_file.py", line 10, in <module>
    assert sys.version_info >= (3,8)
AssertionError

But if I am running Python 3.8, the assert statement does not raise an error, and it executes the rest of the script.

# Running Python 3.8
$ python my_file.py
c
b
a

Note: I have used the Anaconda virtual environment to install and quickly switch between multiple Python versions.

Summary

Check the Python version by typing python ‐‐version in your operating system shell or command line.

To get more detailed information about the environment your Python program runs in, try import sys; sys.version in your Python shell (interactive or normal mode).

Programmer Humor

Q: What is the object-oriented way to become wealthy?
πŸ’°

A: Inheritance.

Where to Go From Here?

Enough theory. Let’s get some practice!

Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.

To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?

You build high-value coding skills by working on practical coding projects!

Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?

πŸš€ If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skillsβ€”even if you are a complete beginner.

If you just want to learn about the freelancing opportunity, feel free to watch my free webinar β€œHow to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, tooβ€”from the comfort of your own home.

Join the free webinar now!

More Finxter Tutorials

Learning is a continuous process and you’d be wise to never stop learning and improving throughout your life. πŸ‘‘

What to learn? Your subconsciousness often knows better than your conscious mind what skills you need to reach the next level of success.

I recommend you read at least one tutorial per day (only 5 minutes per tutorial is enough) to make sure you never stop learning!

πŸ’‘ If you want to make sure you don’t forget your habit, feel free to join our free email academy for weekly fresh tutorials and learning reminders in your INBOX.

Also, skim the following list of tutorials and open 3 interesting ones in a new browser tab to start your new — or continue with your existing — learning habit today! πŸš€

Python Basics:

Python Dependency Management:

Python Debugging:

Fun Stuff:

Thanks for learning with Finxter!