Hubro
Hubro

Reputation: 59323

How do I use Python 3.0 under Apache?

I've searched for ages on how to use Python 3 under Apache. If there is a walkthrough anywhere, it's very well hidden. Thus, hopefully, one of you Python professionals could make a quick 1-2-3 on how it's done!

I'm on Windows 7 using the newest version of XAMPP.

Upvotes: 3

Views: 1350

Answers (3)

Kabie
Kabie

Reputation: 10663

Only on Python 3.1:

http://code.google.com/p/modwsgi/downloads/list

Upvotes: 2

Zach Kelling
Zach Kelling

Reputation: 53819

If you want to write Python 3 WSGI apps try uwsgi. I prefer nginx & uwsgi myself.

Upvotes: 0

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798516

Python 3.0 is only supported via CGI. Put your CGI script in cgi-bin\. If you're willing to look at newer versions, preliminary support is available in mod_wsgi (but you'll probably have to build it yourself).

Upvotes: 1

Related Questions