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 trialMiguel Ibáñez Picó
1,006 PointsCan 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
2 Answers
Zimri Leijen
11,835 Pointsyou 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).
Miguel Ibáñez Picó
1,006 PointsMuch apreciated I'll give it a try
Tural Rzazade
3,750 PointsTural Rzazade
3,750 PointsHey!
You should try "python -m http.server 8000" instead of "python -m SimpleHTTPServer 8000"
In Python 3 (new version) there has been a replacement.