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 trialRichard Rodenberger
179 Pointshow do I run a script?
how do I run a script hello_world.py? It is a quiz question.
3 Answers
Alexander Davison
65,469 PointsI recommend watching the previous video again
Kenneth runs his program hello_world.py
like this:
python hello_world.py
I hope this helps!
Happy coding! ~Alex
Jon Mirow
9,864 PointsHi there!
Your computer by itself can't run a python file - it's just a text document basically. You computer needs something to read it and turn it into intructions the computer can understand. That's what the python interpreter does. So to run the file, you would type
python my_file.py
The python part tells the computer to go and open python, and the second part tells it to give python the file you want to run.
Hope it helps!
Alexander Davison
65,469 Points
Richard Rodenberger
179 Pointsthank you!