I\'m using virtualenv and trying to host my django app. I\'m using Python 3.5 and Django 1.9.2. I can run import django
fine. When I run
from d
I think this module was removed in Django 1.9
The documentation for this module in version 1.8 says that will be removed in 1.9: https://docs.djangoproject.com/en/1.8/howto/deployment/fastcgi/
FastCGI support was deprecated in 1.7, and the module you're trying to import was removed in 1.9. The only protocol supported by Django in 1.9 is WSGI.
If, for some reason, you cannot use WSGI directly, you need to use an adapter that can serve a WSGI application as FastCGI.