Django is a web application framework for Python for developing web applications. Django is written in Python programming language and is open source. Based on DRY(don’t repeat yourself),reusability principles, complex web application development becomes easy in Django.
It is generally said that “Django is for perfectionists with deadline.”
Unlike Windows, development environment is like Linux in Mac OS X, so if you have been using Linux, you won’t feel any difference. Follow these steps to steup Django 1.7 on Mac OS X.
Step 1: Press “F4” and open “Terminal”
Step 2: Lets first install pip (it is used to install python packages). On the terminal type this command and when prompted for password, enter your Mac OS X (computer ) password.
Step 3: Now to install Django, type the command given below and then password of your mac is prompted.
Step 4: To check which version of Django is installed in your Mac, enter this command
Step 5: Creating django project is easy, just type this command
this command will create a django project and to run this project, first navigate to project folder and then start server.
No you can go to http://127.0.0.1:8000 to check if it works.
You’ll see something like this(django’s default page).
You’ll see something like this(django’s default page).
Rest of the documentation you can find here