....

CentOS 6에 Trac설치 도전! 본문

Linux

CentOS 6에 Trac설치 도전!

idkook 2011. 11. 13. 10:02
- 아파치.. 톰캣.. 서브버젼.. 하다못해 JDK까지 모두 yum 으로만 설치했다...
- 설정 파일들이 익숙치 않은곳에 있다보니.. 조금 해매는 정도 빼면 참 편하게 설치가 됐는데..

python 설치..
yum install python-devel

setuptools 설치
easy_install SQLObject

Genshi 설치
easy_install Genshi==0.6

SQLLite install (http://code.google.com/p/pysqlite/downloads/list)에서 최신버젼을 받아서 직접 설치..
 1133  wget http://pysqlite.googlecode.com/files/pysqlite-2.6.3.tar.gz
 1134  tar xvzpf pysqlite-2.6.3.tar.gz
 1135  cd pysqlite-2.6.3
 1136  python setup.py build_static install
Trac 설치
 1139  easy_install Babel==0.9.5
 1140  easy_install Trac


---- 끗!!!

참고 사이트 :  Trac 설치 및 실행(linux centos)


Comments