1 Installing the latest development version of linaro-linaro-django-pagination
2 ---------------------------------------------------------------
4 To install, first check out the latest version of the application from
7 svn co http://linaro-django-pagination.googlecode.com/svn/trunk linaro-django-pagination
9 Now, link the inner ``pagination`` project to your Python path:
11 sudo ln -s `pwd`/pagination SITE_PACKAGES_DIR/pagination
13 If you don't know the location of your site packages directory, this hack might
16 sudo ln -s `pwd`/pagination `python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"`/pagination
18 Now it's installed! Please see usage.txt for information on how to use this
19 application in your projects.
21 Installing via setup.py
22 -----------------------
24 Included with this application is a file named ``setup.py``. It's possible to
25 use this file to install this application to your system, by invoking the
28 sudo python setup.py install
30 Once that's done, you should be able to begin using linaro-django-pagination at will.
32 Installing via setuptools
33 -------------------------
35 If you have setuptools_ installed, you can simply run the following command
36 to install linaro-django-pagination:
38 sudo easy_install linaro-django-pagination
40 .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools