Install and Start Project Django
Install Django with pip package manager, for example inside (virtual) environment, install version 1.8 LTS 1:
pip install "django < 1.9" You can check your install version (not only using pip also) with command django-admin
django-admin --version for example it will output: 1.8
Now we are ready to create Django project:
django-admin startproject rdjango it will create directory rdjango, and inside the directory there will be these files:
./manage.py .