I actually had mod_wsgi working with python3.1, but after updating some software... it no longer works.

I followed these instructions for python3.1 modified slightly for 3.2: https://wiki.archlinux.org/index.php/Mod_wsgi

and while it seems to build/install ok, trying to start apache give me the error :

Cannot load /etc/httpd/modules/mod_wsgi.so into server: /etc/httpd/modules/mod_wsgi.so: undefined symbol: PyCObject_FromVoidPtr

just as this guy got: Python 3.1.1 with --enable-shared : will not build any extensions

Any help would be appreciated.

I am a linux noob.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The released versions of mod_wsgi cannot be used with Python 3.2. You must currently use source code directly from subversion repository for mod_wsgi. See:

http://code.google.com/p/modwsgi/source/checkout

link|improve this answer
thanks, worked like a charm, got a new trunk, then ./configure, make, make install. restarted apache and was good to go. thanks. – 8steve8 Apr 5 '11 at 19:10
feedback

Your Answer

 
or
required, but never shown

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