Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to install Django Web Framework on Ubuntu 14.04 ?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.55k
    Comment on it

    Django is Python web framework for developing dynamic websites and applications. Using Django we can develop Python web applications faster.

    There are number of ways for installing Django, for now I will discuss two ways for installing Django

    i) Global install from Packages

    ii) Global install through pip

     

    If you want to install Django using Ubuntu repositories, the process is straight forward. Firstly update local packages with apt and then install python-django package:

    Install Django in just writing 2 commands

    1. sudo apt-get update
    2. sudo apt-get install python-django

    Now check the version of django installed by typing

    1. django-admin --version

    Output of above command

    1. 1.6.1

     

    Install Django through pip:

    If you wish to install Django globally then the best way to install it is through pip. Following commands will install Python 3 and Django

    1. sudo apt-get update
    2. sudo apt-get install python3-pip
    3. sudo pip3 install django

    Now verify that installation is successfull

    1. django-admin --version

     

    Output of the above command:

    1. 1.7.5

     

    Thats all!

    Thanks for reading the blog

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: