/centos/버전/os/아키텍처
선택. 예) http://ftp.daumkakao.com/centos/7/os/x86_64/su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm' # 버전은 알아서 바꿔서 EPEL설치 yum install python26 python26-devel yum install httpd # mod_wsgi installation tar -xzvf mod_wsgi-3.3.tar.gz cd mod_wsgi-3.3 ./configure --with-python=/usr/bin/python2.6 # or wherever you end up finding your python 2.6 binary make make install # httpd.conf에서 mod_wsgi 연결 LoadModule wsgi_module /usr/lib/httpd/modules/mod_wsgi.so # 경로 알아서 변경.