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
Ian Kerrigan
161 Pointswhat is the step by step process to open python 2.7 on a macbook?
I understand that python 2.7 is installed on macbooks but im having trouble finding it. if someone has a step by step process to get there that would be very helpful to practice python!!
2 Answers
Zachary Kaufman
1,463 PointsKenneth Love does a workshop about downloading Python on Macs, and another one for PyCharm which he talks about writing Python and using the PyCharm terminal to test Python code. If you look at both of those workshops you should be set :) I hope this helps.
James Gill
Courses Plus Student 34,936 PointsIan,
- Open Terminal.
- Type
python. This starts what's called the REPL; you'll see>>>as a prompt. Enter any Python you'd like to run. - Type
exit()to return to the command prompt.
That's it. If you're trying to run a Python program, you'd type python myprogramname.py.