| 4 | == install Trac 0.12 == |
| 5 | * 0.12からデフォルトでローカライズされているが、[http://www.i-act.co.jp/project/products/products.html インタアクト株式会社]のtrac-jaでは更にデフォルトのWikiページ等が日本語化されている。 |
| 6 | * 方針として、aptitudeで十分なパッケージはaptitudeから導入する |
| 7 | |
| 8 | === Dependencies === |
| 9 | * sudo aptitude install -R -y python-setuptools |
| 10 | * sudo aptitude install -R -y python-subversion |
| 11 | * sudo aptitude install -R -y python-pygments |
| 12 | * sudo easy_install pytz |
| 13 | * sudo easy_install Genshi |
| 14 | * Trac 0.12はGenshi 0.6以上を必要とするが、aptitudeから導入出来るのはpython-genshi => 0.5.1-2ubuntu1なため |
| 15 | * sudo easy_install Babel |
| 16 | * aptitude install python-pybabelで導入できる0.9.4でも動作するが、[http://trac.edgewall.org/wiki/TracInstall#OtherPythonPackages 公式]ではBabel 0.9.5以上と書かれているため。 |
| 17 | |
| 18 | === clean install with original Trac-0.12.tar.gz === |
| 19 | * wget http://ftp.edgewall.com/pub/trac/Trac-0.12.tar.gz |
| 20 | * ~/Trac-0.12$ python setup.py compile_catalog -f |
| 21 | * ~/Trac-0.12$ sudo python setup.py install |
| 22 | |