Как настроить PythonPath в apache2

Как настроить PythonPath в apache2

Версия Python по умолчанию в моем Ubuntu(12.04) — 2.7. Для проектов python2.7 я настраиваю так:

 <Location "/callcentre">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE callcentre.settings
    PythonInterpreter callcentre
    PythonDebug On
    PythonPath "['/home/user/env/callcentreENV/lib/python2.7/site-packages','/home/user/env/callcentreENV/'] + sys.path"
  </Location> 

И это работает отлично.

Теперь я хочу создать новый проект с использованием python3.2. И я не знаю, как настроить его в appache, так как sys.path указывает на python2.7 по умолчанию.

Связанный контент