|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
django-threadedcomments is a simple yet flexible threaded commenting system for Django. Where is the Code?The code is now being hosted on GitHub at https://github.com/HonzaKral/django-threadedcomments Updates
DocumentationSamplesFeatures
Dependencies
InstallationThere are two methods of installing django-threadedcomments: Method 1Download 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 2Grab 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 WorkedTo 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 |