Edgewall Software

Version 130 (modified by Christian Boos, 13 years ago) ( diff )

#LatestReleaseCandidate is now 0.12.2rc1

Trac Download

Trac is released under the modified BSD license. For installation instructions, see TracInstall or the included INSTALL file. See TracUpgrade if you're simply upgrading from a previous release.

Latest Stable Release for the 0.12.x line - 0.12.1

Here's the latest and greatest version of Trac, the 0.12.1 Babel release. See the release notes for details.

Tar package

md5sum: 35a9c53ec35466b24a535d19bb6cdfa2

Windows Zip package

md5sum: 067f6e7788ff890fbe578b5e2a3ccf68

Windows installer

md5sum: d9b0ae7105ba96b0e12a3a0961686bfb

0.12.2rc1 (Release Candidate)

Here's the latest release candidate for the upcoming 0.12.2 release. See the ChangeLog for details.

If no problem are detected with those packages, they're going to be the next stable release.

Tar package

md5sum: 7dd91c86dd82c88751ee6ff6160f21cf

Windows Zip package

md5sum: e9594ffdf0299cfa1af2ef56238823b0

Windows installer

md5sum: d72c3b9dd31f6a4ed81d8cd5c64f1e4a

Older Releases

Latest Stable Release for the 0.11.x line - 0.11.7

0.11.7 is a new stable maintenance release. It contains a number of bug fixes and minor enhancements. See the release notes for details.

Tar package

md5sum: 3cd96dad0e4f25d977c422fd6e985e99

Windows Zip package

md5sum: 74a7917596a6315a86a9e10e66e99140

Windows installer

md5sum: e487257fc1199535805bc65983e21cba

Latest Stable Release for the 0.10.x line - 0.10.5

Note that the 0.10.x release line is no longer maintained - use 0.11.x for new installations and upgrade to 0.11.x if possible.

Tar package

Windows Zip package

Windows installer

Even Older Releases

Older releases and auxiliary files are archived on the FTP server:

Each release is also tagged in the subversion repository:

Latest Development Source Code

We use Subversion for source revision control and code sharing.

The Subversion repository URL for the Trac project is at:

http://svn.edgewall.com/repos/trac/

For further instructions on how to use Subversion, see The Subversion Book.

Trac 0.13dev

The latest revision for the trunk version of Trac (currently 0.13dev) can be checked out with the following command:

svn co http://svn.edgewall.org/repos/trac/trunk trac

(https: also works)

Be sure to read 0.13/TracUpgrade and 0.13/TracInstall for the specific installation instructions for this version.

Trac 0.12-stable

The latest revision for the stable version of Trac 0.12 can be checked out from the 0.12-stable branch with the following command:

svn co http://svn.edgewall.org/repos/trac/branches/0.12-stable 0.12dev

Installation can be performed as usual, using for example the following command:

cd 0.12dev
python setup.py install

Alternatively, you can directly "easy-install" the latest stable version from the repository:

easy_install http://svn.edgewall.org/repos/trac/branches/0.12-stable

easy_install is a script provided by the SetupTools.

Installing versions from checkouts

It's perfectly doable to run Trac directly from a checkout, and that's indeed very useful while developing (see TracDev/DevelopmentEnvironmentSetup).

You can also install a development version, either using the normal installation procedure, or by installing it at a specific location. We recommend that you choose some well visible place (e.g. /opt/trac-0.12dev), and override the PYTHONPATH environment variable (or PythonPath path directive for mod_python) by prepending the /opt/trac-0.12dev/lib/python2.4/site-packages path (replace 2.4 by the Python version that you actually use). That way, you minimize the risk of interferences with the packaged Trac version you probably already have.

cd 0.12-stable
python setup.py install --prefix=/opt/trac-0.12dev

then:

export PYTHONPATH=/opt/trac-0.12dev/lib/python2.4/site-packages:$PYTHONPATH

or, in your httpd.conf:

<Location /projects/myproject>
  ...
  PythonPath "['/opt/trac-0.12dev/lib/python2.4/site-packages'] + sys.path"
  ...
</Location>

See also: TracProject, TracGuide.

Note: See TracWiki for help on using the wiki.