- Python installed on your machine. Download and install Python from python.org.
- You can create a Virtual Environment for your code using:
python -m venv venv - After you create your VENV, you can activate it by using:
venv/Scripts/activate #On Windowssource venv/bin/activate #On MacOS & Linux - Install django
pip install django
- Get django to set up the database
python manage.py makemigrations python manage.py migrate - Set up admin user
python manage.py createsuperuser
python manage.py runserver
After running the server the form can be accessible locally on here, and the admin panel here