I installed Pillow and now want to use it on my Django site to allow uploading of images of through my admin page. See previous question.
What changes do I need to make
First, install pillow (having virtualenv activated preferably) with:
pip install pillow
You should import it in Django project:
from PIL import Image
After that you don't need to change settings or anything else. All the modules should work.