How to install the development version of Django

devquora
devquora

Posted On: Feb 22, 2018

 

Follow the below steps to Install the development version of Django Framework.

    • Check out Django’s main development branch
$ git clone https://github.com/django/django.git
    • Make sure that the Python interpreter can load Django’s code. The most convenient way to do this is to use virtualenv, virtualenvwrapper, and pip.
    • After setting up and activating the virtualenv, run the following command:
$ pip install -e django/

Source:https://docs.djangoproject.com/en/2.0/topics/install/

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Django Interview Questions

    What does Of Django Field Class types do?

    What does Of Django Field Class types do?..

    Django Interview Questions

    Does Django Follow Architectural pattern?

    Does Django Follow Architectural pattern?..