What's new? | Help | Directory | Sign in
Google
django-threadedcomments
A simple yet flexible threaded comment system for Django
  
  
  
  
    
Show all Featured Downloads:
threadedcomments-0.4.zip
Join project
Project owners:
  floguy
Project members:
thauber

django-threadedcomments is a simple yet flexible threaded commenting system for Django.

Updates

Documentation

Samples

Features

Dependencies

Installation

There are two methods of installing django-threadedcomments:

Method 1

Download the latest release version from http://django-threadedcomments.googlecode.com/files/threadedcomments-0.4.zip and unzip it. You'll find a script named setup.py inside. To install the package, simply execute the following command:

sudo python setup.py install

Method 2

Grab a copy of the latest subversion revision. To do so, first check out the repository somewhere by issuing the following command:

svn checkout http://django-threadedcomments.googlecode.com/svn/trunk/ django_threadedcomments 

Now issue the following command (replacing SITE-PACKAGES-DIR with your system's site-packages directory):

ln -s `pwd`/django_threadedcomments/threadedcomments SITE-PACKAGES-DIR/threadedcomments

If you're not sure where your site-packages directory is, you can probably get away with doing this:

ln -s `pwd`/django_threadedcomments/threadedcomments `python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"`/threadedcomments

Verify That it has Worked

To verify that your installation has been successful, open a terminal and try to import it:

>>> import threadedcomments

If your result looks like this, then you've missed something and should try again:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named threadedcomments