Follow the step-by-step instructions on Real Python.
You can run the provided example project on your local machine by following the steps outlined below.
Create a new virtual environment:
$ python3 -m venv venv/Activate the virtual environment:
$ source venv/bin/activateInstall the dependencies for this project if you haven't installed them yet:
(venv) $ python -m pip install -r requirements.txtNavigate into the project's directory:
(venv) $ cd user_auth_intro/Make and apply the migrations for the project to build your local database:
(venv) $ python manage.py makemigrations
(venv) $ python manage.py migrateRun the Django development server:
(venv) $ python manage.py runserverNavigate to http://localhost:8000/dashboard to see the project in action.