1. Enter pip install django==1.11.7in cmd and install the version: 1.11.7.
2. When the installation is complete, enter:
>>> Import django>>> Print (Django.get_version ())
If the version number appears, the installation is complete.
3. Add an environment variable to the environment variable path:D:\workpace\Python\PythonIDE\Lib\site-packages\django\bin, You can use the Django-admin command in any of the DOS command lines.
4. Create a new project, the storage path for the new project is in D:\workpace\Python\PythonIDE\Lib\site-packages\django\bin .
django-admin.py Startproject HelloWorld
5. Enter D:\workpace\Python\PythonIDE\Lib\site-packages\django\bin\ProjectName in the DOS command line and enter
Python manage.py runserver 0.0.0.0:8000
Start the Django Service
6,. Then enter 127.0.0.1:8000 in the browser, the Installation Success screen appears, the installation is successful.
WINDOW10 install Django and create the first Django project