> On 27 Jun 2017, at 8:37 PM, Vigneshrajan <[email protected]> wrote:
> 
> Hi all, i am using python 3.5.2(anaconda), Apache(2.4),VC(17) .  i have go 
> mod_wsgi.so from this Rar 
> <https://github.com/GrahamDumpleton/mod_wsgi/releases/download/4.4.12/mod_wsgi-windows-4.4.12.tar.gz>.
>  it only have mod_wsgi.so combination(python 3.14,apache 2.4,VC10) but i cant 
> find mod_wsgi.so in combination(python 3.5, apache 2.4 and VC(17)) . Is this 
> lead to this error "Cannot load modules/mod_wsgi.so into server: The 
> specified module could not be found."? 

To build mod_wsgi on Windows, ensure you have pip working, including ability to 
compile C extensions, and then run:

    pip install mod_wsgi

Then run:

    mod_wsgi-express module-config

That will output what you need to add to the Apache configuration to load 
mod_wsgi.

Then add any additional mod_wsgi specification to load your specific WSGI 
application.

It is recommended you use Apache from apachelounge.com. Other Apache 
distributions may not work.

You must use the same Microsoft C compiler as the Python version was compiled 
for. See:

    https://wiki.python.org/moin/WindowsCompilers 
<https://wiki.python.org/moin/WindowsCompilers>

Graham

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to