My first post, and I\'m new to both Python and Apache, so please go easy on me. I have a Python web application in a conda environment that serves up content just fine using Fl
I'm late to the party on this but I was having the same problem. For what its worth, I didn't have to recompile anything and was able to get this to work by including something like this in my VirtualHost configuration using the system-installed mod_wsgi:
WSGIDaemonProcess mysite python-path=/path/to/anaconda2/lib/python2.7/site-packages
Note that this points to the site-packages
directory.