Many people might try to install PIL (Python Imaging Library) using the command pip install pil, which will fail because PIL is outdated and no longer maintained.
Pillow is an actively maintained fork of PIL. You can install it using the following command:
pip install pillow
After successful installation, you can still use PIL as the import name in your code:
from PIL import Image