Installing django-request

You can install django-request from the following;

Via tar.gz / zip archive

You can download the latest version in a archive created directly from the git repository via the following links:

Once you have downloaded and extracted django-request, you can use the following command to install.

$ python setup.py install

Via git repository

Git is one of the best ways to download django-request, it allows you to easily pull the latest version, just by typing git pull within the django-request directory. To download git or how to use it. See: http://git-scm.com/ .

You can use the following command to clone the git repository:

$ git clone git://github.com/django-request/django-request.git
$ ln -s django-request/request <PYTHONPATH>

Using a package-management tool

This is one of the easiest ways to install django-request. There are two different package-management tools which you could use:

pip

pip is one of the more popular package-management systems for python. You can find documentation, and how to install pip itself here. Once you have pip installed and running, simply type:

$ pip install django-request

easy_install

Another option is to use easy_install, first you need to install easy_install. You can find documentation and how to install easy_install here. Once you have easy_install up and running, just type:

$ easy_install django-request