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 trialdouglas gray
888 Pointshello, when i type python "name of file" into the console i recieve an error message saying the file is not defined.
i was trying to save a file and run the script, but whenever i type python and the name of the file im told its undefined...everything else i type is undefined (clear, exit, etc)
2 Answers
Mark Sebeck
Treehouse Moderator 37,799 Pointshi douglas gray . Since this is the first video in this course I assume it was working up until now for you? I would restart your web browser. Sometimes if you are idle too long workspaces needs restarted. Hope this helps. If not post back to the community.
Steven Parker
231,172 PointsIt sounds like you want to give a shell command to the console but you already have something running, since "undefined" is not a typical shell error message. Take a look at the prompt on the line where you are entering the command. Does it look like this?
>>>
this would mean you're running Python already
If so, get back to the shell by typing exit()
or a Ctrl-D. The shell prompt would look like this:
treehouse:~/workspace$
this is what you want to see
Then you can enter a command like Python yourfile.py
.