Could not find a version that satisfies the requirement PIL (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external PIL to allow).
No matching distribution found for PIL
şeklinde bir hata alıyorsanız, gerekli diğer paketler yüklü ise sorunun çözümü:
pip install PIL --allow-unverified PIL --allow-all-external
Yine sorun çıkarsa ilk önce şunları çalıştırın:
apt-get install python-dev
apt-get install libjpeg-dev
apt-get install libjpeg8-dev
apt-get install libpng3
apt-get install libfreetype6-dev
ln -s /usr/lib/i386-linux-gnu/libfreetype.so /usr/lib
ln -s /usr/lib/i386-linux-gnu/libjpeg.so /usr/lib
ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib
ve ardından:
pip install PIL --allow-unverified PIL --allow-all-external
PIL'i yüklediniz, hayırlı olsun!