Search⌘ K
AI Features

Starting a Django Project

Explore how to initiate a Django project by creating a project directory, setting up and activating a virtual environment, using django-admin to start the project, and running the development server to verify the setup.

Create a project directory

If you’re following this lesson on your personal computer, you can first create a project directory. Open the command line and run the following commands:

mkdir backend

cd backend
...