How is it possible for mod_wsgi to be compiled against Python 2.7.3 but use the 2.7.2 runtime?
Posted
by
Ian William Kohl
on Server Fault
See other posts from Server Fault
or by Ian William Kohl
Published on 2012-11-18T06:45:24Z
Indexed on
2012/11/18
11:09 UTC
Read the original article
Hit count: 262
The following is what appears in my error_log:
[Sat Nov 17 23:13:14 2012] [warn] mod_wsgi: Compiled for Python/2.7.3.
[Sat Nov 17 23:13:14 2012] [warn] mod_wsgi: Runtime using Python/2.7.2.
If I check my $PATH variable and even in /etc/paths, /usr/local/bin (which contains Python 2.7.3) comes before /usr/bin (which contains Python 2.7.2).
Is there some other path that I'm missing out on? How can I get the correct runtime to be used?
© Server Fault or respective owner