Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jonathan Legault
7,006 PointsConsole Foundations course?
I am working through the OOP for Beginning Python. In the project workspace, the teacher's console says:
treehouse:~/workspace/rpg$
However, my workspace console says:
treehouse:~/workspace$
How do I get the workspace console to default the rpg
file into the console?
Someone in the particular video comments had the same question and someone referenced a course called "Console Foundations"; however I cannot find that course or any other course related.
Thank you, Jonathan.
3 Answers

KRIS NIKOLAISEN
54,739 PointsTo get to treehouse:~/workspace/rpg$ from treehouse:~/workspace$ you would enter
cd rpg
cd stands for change directory. To list the contents of the current directory enter
ls
(thats a lowercase L and s).
I couldn't find the console course either.

KRIS NIKOLAISEN
54,739 PointsI did a search in the library for console which is why I didn't receive any results. Turns out there is a course: Introduction to the Terminal

Jonathan Legault
7,006 PointsThat is fantastic. Thank you for the follow up Kris! :)

Jonathan Legault
7,006 PointsThank you Kris. That has solved my problem.