I have been trying to deploy a Django application on Heroku.
Some background - I hadn\'t used virtual environment while building the application but whi
Heroku? Access your application and manually run pip install -r requirements.txt, then turn the application off and back on again.
pip install -r requirements.txt
I had this problem before, this step solved my problem.
If you are doing this in your view
import PIL
do this
import Image