vote up 3 vote down star
2

I wanted to experiment a little with python 3.0 at home. I got python 3.0 working, I've played around with some scripts, and I thought it would be fun to try to make a small web-project with it.

As I was googling, it turned out, that mod_python, for some reasons, will not be able to support python 3.0.

The only other alternative I've found is mod_wsgi.

On the main page of the mod_wsgi project, it says, that if you want to play with python 3.0, you have to get the latest version from subversion repository. I was wondering, if there is somewhere a pre-built windows binaries available?

If there are no such binaries, then I'd be thankful for any resources about building it with VC++ 2008. Or maybe even general resources about building apache and it's modules with VC++ 2008. Thanks.

Oh and, I'm using the latest Apache 2.2 release.

EDIT: Will it be a problem, if I'll be using the official apache build with my own build of a mod_wsgi (I used depends.exe on apache, and seems that it's not built with VC++ 2008)?

flag

4 Answers

vote up 3 vote down check

Binaries for Windows are now being supplied from the mod_wsgi site for Apache 2.2 and Python 2.6 and 3.0. Python 3.0 is only supported for mod_wsgi 3.0 onwards. See:

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

link|flag
Wow! Graham himself... :) My custom builds, for some reason, would prevent apache from loading, so I already gave up on that... Anyway, thank you - I'll finally have something to play with! Official builds FTW! :) – Paulius Maruška Jun 24 at 18:58
I'm also accepting this answer. It doesn't explain how to build mod_wsgi, but it answers where to get the binaries. – Paulius Maruška Jun 24 at 18:59
1  
Instructions for building it yourself will be given in mod_wsgi online documentation in time for mod_wsgi 3.0. The third release candidate for mod_wsgi 3.0 already contains makefiles for Apache 2.2 and Python 2.6/3.0 on Windows. You just need to run 'nmake' with '/f' option against appropriate makefile after having changed any paths within it appropriately. The 'nmake' should be run from within the shell window created from menu of Visual Studio as this sets up all the environment correctly to find the compiler etc. – Graham Dumpleton Jun 25 at 2:06
vote up -1 vote down

I've lost this day trying to build this damned mod_wsgi and all I have to say is: FUUUUUUUUUUUUUUUUUUUUUU

link|flag
building it isn't that hard - I've done it many times. making it work, on the other hand, is another matter. for some reason, my custom build always crashes apache... I gave up - using whatever built packages I can find. – Paulius Maruška May 27 at 6:24
vote up 0 vote down

For what it is worth, this is still (as of March 2nd 2008) up in the air as far as I can tell. See:

http://groups.google.com/group/modwsgi/browse_thread/thread/93e5e56a04fe37ab/5883f8f6a0fcc945

The same issue - lack of 2.6 binaries for windows - affects mod_python.

I think this pretty much leaves Django users running on Windows locked onto the 2.5 tree... :-(

link|flag
1  
Not so. The zip file attached to the following page contains a mod_wsgi binary for Python 2.6: groups.google.com/group/modwsgi/… – msanders Mar 24 at 10:25
vote up 1 vote down

I would like to find either 2.6 (preferable) or 3.0 (okay) Windows binaries myself, and have looked into this a bit.

There are Windows build steps for mod_wsgi buried deep in the Google Group for it. I think they're out of date; only one person appears to have ever done it and told the world how well it worked out. There may well be problems compiling that require a patch.

I do not think you will need to build your own Apache, or if it matters that the VC++ version is different (though I don't have a ton of evidence for this belief). VC++ version is very important for Python module builds since they rely heavily on the internals of the compiler data structures. I think the Apache module interface is more structured.

You'll probably want to post to the mod_wsgi group if you try this and hit problems, or if you successfully build the modules, please post them as some of us would very much like them but are too busy to get to doing it ourselves :(

link|flag
Please post the link to the post on google groups (if you have it). I already found some interesting stuff (VS2003 solution/project files used to build mod_wsgi for py2.4 and py2.5). Hopefully, I can work my way up from there. It would be nice to see some comments from someone who already did this. – Paulius Maruška Jan 16 at 7:49
Two useful threads: groups.google.com/group/modwsgi/… groups.google.com/group/modwsgi/… – kquinn Jan 16 at 8:18
The zip file attached to the following page contains a mod_wsgi binary for Python 2.6: groups.google.com/group/modwsgi/… – msanders Mar 24 at 10:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.