-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
28 lines (19 loc) · 983 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Thanks for downloading django-registration.
To install it, run the following command inside this directory:
python setup.py install
If you have the Python ``easy_install`` utility available, you can
also type the following to download and install in one step::
easy_install -Z django-registration
(the ``-Z`` flag is required to force ``easy_install`` to do a normal
source install rather than a zipped egg; django-registration cannot be
used from a zipped egg install)
Or if you're using ``pip``::
pip install django-registration
Or if you'd prefer you can simply place the included ``registration``
directory somewhere on your Python path, or symlink to it from
somewhere on your Python path; this is useful if you're working from a
Mercurial checkout.
Note that this application requires Python 2.4 or later, and a
functional installation of Django 1.3 or newer. You can obtain Python
from http://www.python.org/ and Django from
http://www.djangoproject.com/.