-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
55 lines (37 loc) · 1.73 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
django-recaptcha-works Installation Instructions
========================================================================
This file contains information on how to download and install
django-recaptcha-works in your system.
Requirements
------------
This application requires Python 2.3 or later, and a functional installation
of Django. You can obtain Python from http://www.python.org/ and Django from
http://www.djangoproject.com/.
Detailed information about the minimum supported Django version and other
Python modules that may be required in order to run this software are
available in the `requirements.txt` file.
Download
--------
You can download the latest django-recaptcha-works releases either from the
project page at the Python Package Index (PyPI):
* http://pypi.python.org/pypi/django-recaptcha-works
Or you can clone the project's public source code repository and then
check-out any stable release, all of which are tagged:
hg clone https://source.codetrax.org/hgroot/django-recaptcha-works
hg tags
hg update 0.1.1
Install
-------
To install django-recaptcha-works, use the provided installation script:
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-recaptcha-works
(the `-Z` flag is required to force `easy_install` to do a normal
source install rather than a zipped egg; django-recaptcha-works cannot be
used from a zipped egg install)
Or if you're using `pip`:
pip install django-recaptcha-works
Or if you'd prefer you can simply place the `recaptcha_works` directory,
which exists under `src`, somewhere on your Python path, or symlink to it
from somewhere on your Python path.