Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I check what version of the Python Interpreter is interpreting my script?

share|improve this question

7 Answers

up vote 118 down vote accepted

This information is available in the sys.version string in the sys module:

>>> import sys

Human readable:

>>> print sys.version
2.5.2 (r252:60911, Jul 31 2008, 17:28:52) 
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)]

For further processing:

>>> sys.version_info
(2, 5, 2, 'final', 0)
share|improve this answer
11  
You forgot the reference back to the documentation: docs.python.org/library/sys.html#sys.version – S.Lott Jul 7 '09 at 16:50
2  
You should really be using sys.version_info for a proper tuple, or the awesome sys.hexversion for easy comparison, as per the lower-voted answers. – Craig Ringer Aug 5 '12 at 13:19

I like sys.hexversion for stuff like this.

http://docs.python.org/library/sys.html#sys.hexversion

>>> import sys
>>> sys.hexversion
33883376
>>> '%x' % sys.hexversion
'20504f0'
>>> sys.hexversion < 0x02060000
True
share|improve this answer
That's a nifty version feature I hadn't seen, and a bit easier to use (at least to me) than the regular version... – Wayne Werner Jun 10 '10 at 20:14
This is clearly the best approach for checking the minimal Python version in your scripts. – sorin Sep 2 '10 at 9:23
This is a practice more software should adopt. – Steven Lu May 11 at 5:19

Your best bet is probably something like so:

>>> import sys
>>> sys.version_info
(2, 6, 4, 'final', 0)
>>> if not sys.version_info[:2] == (2, 6):
...    print "Error, I need python 2.6"
... else:
...    from my_module import twoPointSixCode
>>> 

Additionally, you can always wrap your imports in a simple try, which should catch syntax errors. And, to @Heikki's point, this code will be compatible with much older versions of python:

>>> try:
...     from my_module import twoPointSixCode
... except Exception: 
...     print "can't import, probably because your python is too old!"
>>>
share|improve this answer
1  
Why a bare except instead of except Exception? – Roger Pate Jun 10 '10 at 21:12
2  
@Roger - yeah, I fixed it :D – Seth Jun 10 '10 at 23:38

Put something like:

#!/usr/bin/env/python
import sys
if sys.version_info<(2,6,0):
  sys.stderr.write("You need python 2.6 or later to run this script\n")
  exit(1)

at the top of your script.

share|improve this answer
1  
This is incorrect (or at least, incomplete) because the old interpreters will barf on newer language constructs such as x if Pred() else y. They will die during the "lexing" phase, and never have a chance to actually execute exit(1). Seth's answer is correct in encapsulating the new language features in other files. – Mark Rushakoff Jun 10 '10 at 16:20
import sys
sys.version.split(' ')[0]

sys.version gives you what you want, just pick the first number :)

share|improve this answer

Like Seth said, the main script could check sys.version_info (but note that that didn't appear until 2.0, so if you want to support older versions you would need to check another version property of the sys module).

But you still need to take care of not using any Python language features in the file that are not available in older Python versions. For example, this is allowed in Python 2.5 and later:

try:
    pass
except:
    pass
finally:
    pass

but won't work in older Python versions, because you could only have except OR finally match the try. So for compatibility with older Python versions you need to write:

try:
    try:
        pass
    except:
        pass
finally:
    pass
share|improve this answer

To see a MSDOS script to check the version before running the Python interpreter (to avoid Python version syntax exceptions) See solution:

Python: Best way to check for Python version in program that uses new language features?

and

MS script; Python version check prelaunch of Python module http://pastebin.com/aAuJ91FQ (script likely easy to convert to other OS scripts.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.