python3 -m venv /path/to/new/env
Change to the new environment by running the following command:
source {/path/to/new/env}/bin/activate
Head into the project folder and run the following command:
pip install -r requirements.txt
cd src/
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser --username admin --email [email protected]
python manage.py runserver