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 trialMaija Mbenzi
2,536 PointsWhy python3 instead of python like in the previous videos?
Since before we used python to start up the interpreter if I'm not mistaken...
4 Answers
Steven Parker
231,236 PointsYou can still use "python". For a modern installation "python" is a shorthand for "python3". The instructor may have had an unusual configuration that required the longer name, or may have just typed it from habit.
Arnold Ganga
1,698 Pointspython3 specifies the version of python that is python version 3
Uhunoma Osula
6,414 Pointsso does that mean if I was using the python version 4 I would write python4?
Steven Parker
231,236 PointsAccording to the creator of Python, Guido van Rossum, a version 4 is not likely. But generally, unless you have more than one version of Python installed, you would use just "python" to run the version you have.
Uhunoma Osula
6,414 Pointsthank you
Maija Mbenzi
2,536 PointsMaija Mbenzi
2,536 PointsUnderstood. Thank you