Writing your first Django app
We’ll assume you haveDjango installed already. You can tell Django is installed and which version by running the following command in a shell prompt (indicated by the $ prefix):
$ python -m django --versionIf Django is installed, you should see the version of your installation. If it isn’t, you’ll get an error telling “No module named django”.
Creating a project
$ django-admin startproject mysiteThis will create a mysite directory in your current directory
36 Views
