from PIL import Image - ImportError: No module named PIL
I encountered this while installing tensorflow code on NVIDIA Jetson Nano. This works for me:
pip3 install Image
I was experiencing a similar issue. Fixed it by pip installing WITHOUT sudo.
pip install pillow
instead of
sudo pip install pillow