Julio Gorgé
Julio Gorgé

Reputation: 10106

Python version shipping with Mac OS X Snow Leopard?

I would appreciate it if somebody running the final version of Snow Leopard could post what version of Python is included with the OS (on a Terminal, just type "python --version")

Thanks!

Upvotes: 10

Views: 10521

Answers (5)

snarkyname77
snarkyname77

Reputation: 1174

You can get an installer for 2.6.2 from python.org, no reason to go without.

Upvotes: 1

ACoolie
ACoolie

Reputation: 1439

It ships with both python 2.6.1 and 2.5.4.

$ python2.5

Python 2.5.4 (r254:67916, Jul 7 2009, 23:51:24)

$ python

Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51)

Upvotes: 12

jnoller
jnoller

Reputation: 1179

bot:nasuni jesse$ python
Python 2.6.1 (r261:67515, Jul  7 2009, 23:51:51) 
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

Probably the biggest reason I went and upgraded this morning, it's not 2.6.2, but it's close enough.

Upvotes: 5

aehlke
aehlke

Reputation: 15831

Python 2.6.1

(according to the web)

Really good to know :)

Upvotes: 3

Related Questions