Moved docs into the docs directory. Also, added an index.txt useful for sphinx docum...
[django-pagination.git] / docs / install.txt
1 Installing django-pagination
2 ----------------------------
3
4 To install, first check out the latest version of the application from
5 subversion:
6
7     svn co http://django-pagination.googlecode.com/svn/trunk django-pagination
8
9 Now, link the inner ``pagination`` project to your Python path:
10
11     sudo ln -s `pwd`/pagination SITE_PACKAGES_DIR/pagination
12
13 If you don't know the location of your site packages directory, this hack might
14 do the trick for you:
15
16     sudo ln -s `pwd`/pagination `python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"`/pagination
17     
18 Now it's installed.  Please see README.txt for information on how to use this
19 application in your projects.