atomAltera
atomAltera

Reputation: 1801

Installation mod_wsgi for python3.2

I`m trying to install mod_wsgi for Python 3.2 on Debian 6 (Squeeze).

First I installed libapache2-mod-wsgi-py3 from default repository, and it was for Python3.1, then I add to source.list

*deb http://ftp.de.debian.org/debian wheezy main*

and call apt-get install libapache2-mod-wsgi-py3 again. After that sys.version in wsgi returs 3.2.3.

Is it truly mod-wsgi works with Python3.2 or that just bug?

Upvotes: 2

Views: 1417

Answers (1)

Graham Dumpleton
Graham Dumpleton

Reputation: 58563

If wishing to use Python 3.2, you must compile mod_wsgi from source code out of the mod_wsgi source code repository. Last tar ball and binary packages from distros wouldn't support 3.2.

Upvotes: 3

Related Questions