Edgewall Software

Changes between Version 132 and Version 133 of TracInstall


Ignore:
Timestamp:
Aug 29, 2005, 1:21:15 AM (19 years ago)
Author:
Christopher Lenz
Comment:

We shouldn't try to document installation of dependencies here, as it is highly platform dependent, and better documented by the third-party project itself.

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v132 v133  
    4646'''Attention''': The various available versions of these dependencies are not necessarily interchangable, so please pay attention to the version numbers above. If you are having trouble getting Trac to work please double-check all the dependencies before asking for help on the MailingList or IrcChannel.
    4747
    48 == Installing the required software ==
    49 As written above, there is some software needed to run trac. The following steps will guide you trough the most important mistakes.
    50 
    51 === Subversion ===
    52 Most distributions are providing swig, so this is not a problem. After installing swig, download the latest subversion release. After ./configure make and make install,
    53 {{{
    54 make install-swig-py
    55 ln -s /usr/local/lib/svn-python/svn /usr/lib/python/site-packages/svn
    56 ln -s /usr/local/lib/svn-python/libsvn /usr/lib/python/site-packages/libsvn
    57 }}}
    58 
    59 == clearsilver ==
    60 
    61 {{{
    62 ./configure --with-python=/usr/bin/python
    63 }}}
    64 
    65 make install unforunatly does not install neo_cgi.so to the python directoy, this has to be done manually:
    66 
    67 {{{
    68 cp python/neo_cgi.so /usr/lib/python/site-packages/
    69 }}}
    70 
    71 To be completed...
     48Please refer to the documentation of these packages to find out how they are best installed. In addition, most of the [http://projects.edgewall.com/trac/wiki/TracInstallPlatforms platform-specific instructions] also describe the installation of the dependencies.
    7249
    7350== Installing Trac ==