如何在 apache2 中配置 PythonPath

如何在 apache2 中配置 PythonPath

我的 Ubuntu(12.04) 中默认的 Python 版本是 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

相关内容