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

HTML HTML Basics Going Further with HTML Root-relative Paths

Miguel Ibáñez Picó
Miguel Ibáñez Picó
1,006 Points

Can not make the local server to function

When I type the comand in the cmd.exe it returns No module named SimpleHTTPServer, Also in your explanation it says: "on the terminal navigate to the desired..." how do I navigate at all in the cmd.exe?

Thanks in advance

Tural Rzazade
Tural Rzazade
3,750 Points

Hey!

You should try "python -m http.server 8000" instead of "python -m SimpleHTTPServer 8000"

In Python 3 (new version) there has been a replacement.

2 Answers

you type cd <path> where <path> is the place where you want to go, relative to where you are.

so for example cd server if you want to go to a folder called server (assuming that folder is inside the folder you are currently located).