ImportError: No module named crispy-forms
You have to make sure that you install crispy-forms into the virtualenv.
- Activate VirtualEnv (where env is the directory/name of your virtual environment):
source env/bin/activate
- Install crispy-forms
pip install django-crispy-forms
I solved this problem right now, I realized that the crispy-form installed version was the python 2.7 version, but I'm using Django-1.10 with Python 3.5, and I think this is your problem too.
Try: pip3 install --user django-crispy-forms