Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (2015) Python for Beginners The Python Shell

Ian Kerrigan
Ian Kerrigan
161 Points

how can i download python 2.7 on a mac?

I am using Python 2.7 in my classroom, we have a computer lab with the python shell already built in along with Notepad ++, i want to use the 2.7 shell since it lines up with what I am doing in the class room. How do i download that version on my mac?

1 Answer

Chris Shaw
Chris Shaw
26,676 Points

Hi Ian,

As of OS X Mountain Lion - Python 2.7 comes pre-bundled with the core operating system which means you don't need to manually install Python, simply open your terminal and type the below command which should output something similar to Python 2.7.

python --version

Hope that helps!