pip install pillow fails on Termux with 'libjpeg not found' or similar compilation error.
Termux does not bundle libjpeg-turbo by default. Pillow compiles from source and requires the native library.
Install libjpeg-turbo via pkg before installing pip packages.
pip install pillow
pkg install libjpeg-turbo -y pip install pillow