Created
January 25, 2015 08:34
-
-
Save rupakraj/ed52599f2508003ccaa8 to your computer and use it in GitHub Desktop.
Setup the Django and run upto hello world
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setup the Django and run upto hello world | |
========================================= | |
Install python and python-pip | |
then use the pip to install the python | |
pip install Django==1.7.3 | |
To check if installed properly (Go to pythong CLI) | |
> python | |
>>> import django | |
>>> print(django.get_version()) | |
If successed you will get the version of the system |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment