3

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.

Hubro
  • 56,214
  • 69
  • 228
  • 381

3 Answers3

2

Only on Python 3.1:

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

Kabie
  • 10,489
  • 1
  • 38
  • 45
1

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).

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
0

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

Zach Kelling
  • 52,505
  • 13
  • 109
  • 108