Steps to set up a simple Django project launch At the terminal pip install django Pillow Go to the Directory root/ Enter the command python manage.py runserver to run on the local server To run, you can create file runserver.py in root/, enter the followin code in it, and run it import subprocess subprocess.run(["python", "manage.py", "runserver"]) info : The superuser username and password are both reza