I\'ve set up my Python/Django virtual environment, and mod_wsgi in daemon mode, and am pretty sure (done this before) it\'s \"mostly correct\" except I get the fol
Try uninstalling PIL completely, and then reinstall Pillow package.
Actually there is conflict in PIL old package and Pillow package which is in conflict with newer versions of django.
You need to install the new Pillow package.
First Uninstall both
sudo pip3 uninstall pil
sudo pip3 uninstall pillow
Reinstall Pillow
sudo pip3 install pillow