views:

318

answers:

2

How do I install mod_python to run with Python 2.6 on a Windows machine? I could not find an installer for Python 2.6.

I downloaded this installer for (mod_python on Python 2.5): mod_python-3.3.1.win32-py2.5-Apache2.2.exe and extracted it to get PLATLIB and SCRIPTS folders. Where do I go from here?

+3  A: 

You don't. That's the install for Python 2.5 and will not work. You can try the instructions here or use mod_wsgi instead as they suggest.

Tom
+2  A: 

Nowhere. That is for Python 2.5. You'll need to build from source if you want it to work with 2.6, or wait for them to get around to it.

Ignacio Vazquez-Abrams