If you can get back to everything being all 32 bit, or all 64 bit, that is for Python, Apache and compiler, and you have ‘pip’ installed and ‘pip' works for a package which has a C extension which needs to be compiled, you can always try doing:
pip install mod_wsgi
and see if it builds and installs.
This works for Python 3.5 and Apache 2.4, but not tested with other versions.
It expects Apache to be installed in ‘C:\Apache2.4’. If you have it elsewhere, set the environment variable like:
MOD_WSGI_APACHE_ROOTDIR=C:\Apache2.4
before running ‘pip’.
If can get that far, then run:
mod_wsgi-express module-config
and it will output what you need to put in the Apache configuration file to load mod_wsgi.
Graham