Edgewall Software

Version 106 (modified by Christian Boos, 14 years ago) ( diff )

oops, add missing #!div

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 0.11.5

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

Tar package

Windows Zip package

Windows installer

0.11.6rc1 (Release Candidate 1)

0.11.6rc1 is the first release candidate for the upcoming 0.11.6 release. See the release notes for details.

Latest Stable Release for the 0.10.x line - 0.10.5

0.10.5 is a security and bug fix release which fix a few important issues and everyone is recommended to upgrade their installations. See ChangeLog for details.

Tar package

Windows Zip package

Windows installer

Debian Packages

Read TracOnDebian for more information about installing Trac on Debian.


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.12dev

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

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

(https: also works)

Trac 0.11-stable

The latest revision for the stable version of Trac 0.11 (currently still Trac 0.11.1dev) can be checked out from the 0.11-stable branch with the following command:

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

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

cd 0.11dev
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.11-stable

easy_install is a script provided by the SetupTools.

Trac 0.10-stable

Note that there's currently no difference between the 0.10-stable branch and the last Trac version on that release line (0.10.5). There's no planned 0.10.6 release either, the branch can be considered as being closed.

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.11.3dev), and override the PYTHONPATH environment variable (or PythonPath path directive for mod_python) by preprending the /opt/trac-0.11.3dev/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.11-stable
python setup.py install --prefix=/opt/trac-0.11.3dev

then:

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

or, in your httpd.conf:

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

See also: TracProject, TracGuide.

Note: See TracWiki for help on using the wiki.