Edgewall Software

Changes between Version 2 and Version 3 of TracForPython2.5


Ignore:
Timestamp:
Apr 1, 2007, 2:49:51 AM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracForPython2.5

    v2 v3  
    1515It can be easily installed using traditional Linux way of configure/make/make install.
    1616
    17 Only 2 little adjustments:
     17Only 3 little adjustments:
    1818
    1919 * 2 files need to be adjusted to allow version 2.5 of Python to be used as below
    2020
    2121 * in Ubuntu (and Debian), if you have Ruby installed, there is another dependency not checked by Clearsilver build/install process, to be corrected
     22
     23 * As described [https://launchpad.net/ubuntu/+source/clearsilver/+bug/86685/comments/5 here], you also need to have some python development packages
    2224
    2325=== Files to be adjusted ===
     
    5355With Python Clearsilver module in Python2.5 site-packages dir, Trac is working ok all the day in a Python2.5 x86_64 environment.
    5456
     57=== Install required python development headers ===
     58
     59peterdv says: In addition to the comment from Antonio Censi, I had to:
     60{{{
     61sudo apt-get install zlib1g-dev
     62sudo apt-get install autoconf
     63sudo apt-get install python-dev
     64}}}
     65
    5566AntonioCensi