Installing the Django dev environnement ver.2.1.5 on Windows
Installing Python 3 64bit
We will be using the official Python 3.7.2 installer, available here : python-3.7.2-amd64.exe
Proceed while following those steps

Check « Add Python 3.7 to PATH » and click « Customize installation »
Click Next
Check « Install for all users » then click « Install »
Installing Django
Now let' install Django using « pip » which is included in Python 3. This requires a functionning internet connection .
Open a CMD with administrator privileges, this can be done easily by searching «cmd» in the windows menu, then right clicking, and choosing « Run as administrator ».
Update pip
py -m pip install --upgrade pip
Install Django
py -m pip install django==2.1.5
Install Pillow
py -m pip install pillow==5.1.0
Creating a test project
Chose a directory, then through cmd, execute the following command to create your project
django-admin startproject nomduprojet
Now, move to the project's directory
cd nomduprojet
Finally, launch the web dev server
python manage.py runserver
You can access the server through this url http://127.0.0.1:8000/
