Django- configuration startup
Installation: pip install django
Configure the PATH environment variable: C:\ Python27\ Scripts
Django-admin startproject mytest
Django-admin startapp myapp
To deploy a django application, you need to modify its settings.py, change the INSTALLED_APPS, and add the name of your application, such as
,
Run django: python manage.py runserver