diff options
Diffstat (limited to 'docs/source/installation.rst')
| -rw-r--r-- | docs/source/installation.rst | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 604e1fe15..4eb5760f9 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -48,17 +48,22 @@ For instance the packages for Debian wheezy are get with::  If these packages do not exist in your distribution's repository, please refer to applications websites. -django-simple-history and xhtml2odt are usually not packaged. +django-simple-history and xhtml2odt are usually not packaged.:: + +    LOCAL_SRC_PATH=/usr/local/src  To install django-simple-history (git package is needed):: -    $ git clone https://github.com/treyhunner/django-simple-history.git -    $ cd django-simple-history -    $ python setup.py install +    cd $LOCAL_SRC_PATH +    git clone https://github.com/treyhunner/django-simple-history.git +    cd django-simple-history +    python setup.py install  To install xhtml2odt (git package is needed):: -    $ git clone git://gitorious.org/xhtml2odt/xhtml2odt.git +    cd /tmp +    wget http://download.opensuse.org/repositories/home:/abompard:/xhtml2odt/Debian_6.0/all/xhtml2odt_1.3-1_all.deb +    dpkg -i xhtml2odt_1.3-1_all.deb  (don't forget the path you have installed this library: you'll have to set it in your settings) | 
