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