First, we need to activate the Virtual Environment (venv) where Django is installed:
source venv/bin/activate
Then, paste the following commands to install Django and other Dependencies in your Codespace: (Only once per Codespace)
pip install -r requirements.txt
And lastly, paste the following commands to Run the Development Server:
cd django_project
python manage.py runserver