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

Python

Jonathan Legault
Jonathan Legault
7,006 Points

Console 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

To 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.

I 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
Jonathan Legault
7,006 Points

That is fantastic. Thank you for the follow up Kris! :)

Jonathan Legault
Jonathan Legault
7,006 Points

Thank you Kris. That has solved my problem.