Agnel Kurian
Agnel Kurian

Reputation: 59456

mod_python with Python 2.6 on Windows

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?

Upvotes: 1

Views: 1300

Answers (2)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798456

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.

Upvotes: 2

Tom
Tom

Reputation: 22831

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.

Upvotes: 3

Related Questions