Edgewall Software

Version 60 (modified by Jonas Borgström, 17 years ago) ( diff )

Added info about 0.10.3rc1

Trac Download

Trac is released under the modified BSD license. For installation instructions, see TracInstall or the included INSTALL file.

0.10.3rc1 (Release candidate 1)

0.10.3 is a bug fix release and fixes a few bugs introduced in the 0.10.2 release.

Tar package

Windows Zip package

Latest Stable Release - 0.10.2

0.10.2 is a security fix release, please upgrade. See the ChangeLog for details.

Warning: If you use Apache (mpm-prefork) and Subversion, you'll probably get hit by the #4132 issue. In this case you should better install the release candidate above, before 0.10.3 gets released.

Tar package

Windows Zip package

Windows installer

Note: The Trac installer no longer includes the ClearSilver library; it needs to be installed separately. You can find binaries at http://www.clearsilver.net/downloads/ or http://clearsilver.yi.org/.

Previous Stable Release - 0.9.6

0.9.6 is a security fix release, please upgrade. See the ChangeLog for details.

Tar package

Windows Zip package

Windows installer

Notes:

  • The Trac installer no longer includes the ClearSilver library; it needs to be installed separately. You can find binaries at http://www.clearsilver.net/downloads/ or http://clearsilver.yi.org/.
  • If you upgrade from 0.8.x, take care to uninstall 0.8.x first. Otherwise, you'll have a "No module named log" error, because the installer will install the 0.9.x trac/log.py file using the 0.8.x upper case name trac/Log.py (see #2533)

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/

Trac devel

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

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

Or with encryption:

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

Trac stable

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

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

For installing this version, we recommend that you choose some well visible place (e.g. /opt/trac-0.10.3dev), and override the PYTHONPATH environment variable (or PythonPath path directive for mod_python) by preprending the /opt/trac-0.10.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.10.3dev
python setup.py install --prefix=/opt/trac-0.10.3dev

then:

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

or, in your httpd.conf:

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

Miscellaneous

If you already had existing checkouts for svn.edgewall.com, no need to redo the checkouts, you can simply relocate your working copies:

svn switch --relocate http://svn.edgewall.com http://svn.edgewall.org

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


See also: TracProject, TracGuide.

Note: See TracWiki for help on using the wiki.