public
Description: A fork of James Bennett's django-comment-utils that should work with Django 1.0
Homepage:
Clone URL: git://github.com/jezdez/django-comment-utils.git
django-comment-utils / INSTALL.txt
100644 22 lines (16 sloc) 0.79 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
=========================
Installation instructions
=========================
 
There are two ways to install this application for use by your
projects; the easiest in most cases is to do a Subversion checkout
into a directory that's on your Python path::
 
    svn co http://django-comment-utils.googlecode.com/svn/trunk/comment_utils/
 
The other method is to download a packaged version and use Python's
``distutils`` to install it onto your Python path::
 
    wget http://django-comment-utils.googlecode.com/files/comment_utils-0.2.tar.gz
    tar zxvf comment_utils-0.2.tar.gz
    cd comment_utils-0.2
    python setup.py install
 
Depending on your system configuration, you may need to prefix the
last command with ``sudo`` and supply your password to perform a
system-wide installation.