pil mac descargar python install python-imaging-library

python - mac - Error al intentar instalar PIL



pip pillow python (3)

Esta pregunta ya tiene una respuesta aquí:

Intento instalar PIL pero obtengo errores, ¿qué debo hacer?

$ 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


En su lugar, podrías intentar usar Pillow , que es una bifurcación PIL:

pip install Pillow

Para importar uso:

from PIL import Image


La biblioteca PIL está en Pillow . Prueba esto:

$ pip install Pillow


No estoy seguro si hay una manera mejor que esta. Pero esto puede funcionar como se describe en la documentación:

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

Descarga el kit fuente y extráelo. Una vez extraído, haga lo siguiente como se describe en el kit.

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