~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/man/install.rst

  • Committer: Matt Giuca
  • Date: 2009-12-01 01:58:17 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: matt.giuca@gmail.com-20091201015817-kbog7ic3pgnfrc5f
doc/man/install: Added package names for Apache and Python. Added a full apt-get install command to save typing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
might work too. Debian/Ubuntu package names are given after the name of the
27
27
software.
28
28
 
 
29
.. If this list changes, you also need to change the list below.
 
30
 
29
31
* Ubuntu 8.04 or later (other distros should work with some tweaking, but are untested)
30
 
* Apache 2.x with modules:
 
32
* Apache 2.x (``apache2``) with modules:
31
33
   + mod_python (``libapache2-mod-python``)
32
34
   + mod_dav_svn and mod_authz_svn (``libapache2-svn``)
33
 
* Python 2.5 or 2.6 with modules:
 
35
* Python 2.5 (``python2.5``) or 2.6 (``python2.6``) with modules:
34
36
   + cjson (``python-cjson``)
35
37
   + ConfigObj (``python-configobj``)
36
38
   + docutils (``python-docutils``)
57
59
Installing from source
58
60
======================
59
61
 
 
62
.. If this list changes, you also need to change the list above.
 
63
 
 
64
If you want to grab all of the required packages in one command, use::
 
65
 
 
66
    sudo apt-get install apache2 libapache2-mod-python libapache2-svn \
 
67
    python2.6 python-cjson python-configobj python-docutils python-epydoc \
 
68
    python-formencode python-genshi python-psycopg2 python-svn python-routes \
 
69
    python-storm libjs-jquery postgresql subversion debootstrap rsync \
 
70
    build-essential
 
71
 
60
72
While installing from a distribution package is often a better idea for
61
73
users, developers will need to install from a plain source tree.
62
74