web-dev-qa-db-fra.com

Obtenir une erreur lorsque vous essayez d'installer PIL

J'essaie d'installer PIL mais j'obtiens des erreurs. Que dois-je faire?

$ Command
Result
------------
$ pip install PIL

Collecting PIL
  Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
--------------------------------------------------------------------
$ pip install PIL  --allow-unverified PIL --allow-all-external

DEPRECATION: --allow-all-external has been deprecated and will be removed in the future. Due to changes in the repository protocol, it no longer has any effect.
DEPRECATION: --allow-unverified has been deprecated and will be removed in the future. Due to changes in the repository protocol, it no longer has any effect.
Collecting PIL
  Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
31
Shira

Vous pouvez essayer d'utiliser Pillow à la place, qui est une fourche PIL:

pip install Pillow

Pour importer utiliser:

from PIL import Image
67
maviz

La bibliothèque PIL se trouve dans Pillow. Essaye ça:

$ pip install Pillow
5
Fomalhaut

Je ne sais pas s'il existe un meilleur moyen que celui-là. Mais cela peut fonctionner comme décrit dans la documentation:

http://www.pythonware.com/products/pil/ .

Téléchargez le kit source et extrayez-le. Une fois extrait, procédez comme indiqué dans la trousse.

    $ tar xvfz Imaging-1.1.7.tar.gz
    $ cd Imaging-1.1.7
    $ python setup.py install
1
Vivek Akupatni