First install mod_wsgi from pip, or a precompiled one from https://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi Note: cp37 means python 3.7, cp27 means python 2.7, etc, so pick the right one for your platform
Find the installation path of your module with this command:
mod_wsgi-express module-location
> c:\code\jotaro\venv\lib\site-packages\mod_wsgi\server\mod_wsgi.cp37-win_amd64.pyd
Now add this line with the path you just found to the C:\Apache24\bin\httpd.conf
configuration file
# Example:
LoadModule wsgi_module c:\code\jotaro\venv\lib\site-packages\mod_wsgi\server\mod_wsgi.cp37-win_amd64.pyd
Now you can test if the module is loaded correctly by restarting your apache server:
C:\Apache24\bin\httpd.exe -k restart