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 Django Basics What a View! Running the Server

Ross Thompson
Ross Thompson
7,706 Points

If I want to practice the django app outside of workspaces, how can i replicate the port 8000 thing, and view the site?

All in the title.

1 Answer

Ryan S
Ryan S
27,276 Points

Hi Ross,

When you run the following command with no arguments:

python manage.py runserver

The django server will default to port 8000 on your localhost. To access this in a browser, you'd go to "http://127.0.0.1:8000", or "http://localhost:8000".

If you haven't worked with Django locally before, I'd strongly recommend going through the videos on setting up a virtual environment on windows or mac.