Estou tentando instalar o PIL (Python Imaging Library) usando o comando:
sudo pip install pil
mas recebo a seguinte mensagem:
Downloading/unpacking PIL
You are installing a potentially insecure and unverifiable file. Future versions of pip will default to disallowing insecure files.
Downloading PIL-1.1.7.tar.gz (506kB): 506kB downloaded
Running setup.py egg_info for package PIL
WARNING: '' not a valid package name; please use only.-separated package names in setup.py
Installing collected packages: PIL
Running setup.py install for PIL
WARNING: '' not a valid package name; please use only.-separated package names in setup.py
--- using frameworks at /System/Library/Frameworks
building '_imaging' extension
clang -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch x86_64 -pipe -IlibImaging -I/System/Library/Frameworks/Python.framework/Versions/2.7/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _imaging.c -o build/temp.macosx-10.8-intel-2.7/_imaging.o
unable to execute clang: No such file or directory
error: command 'clang' failed with exit status 1
Complete output from command /usr/bin/python -c "import setuptools;__file__='/private/tmp/pip_build_root/PIL/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-AYrxVD-record/install-record.txt --single-version-externally-managed:
WARNING: '' not a valid package name; please use only.-separated package names in setup.py
running install
running build
.
.
.
.
copying PIL/XVThumbImagePlugin.py -> build/lib.macosx-10.8-intel-2.7
running build_ext
--- using frameworks at /System/Library/Frameworks
building '_imaging' extension
creating build/temp.macosx-10.8-intel-2.7
creating build/temp.macosx-10.8-intel-2.7/libImaging
clang -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch x86_64 -pipe -IlibImaging -I/System/Library/Frameworks/Python.framework/Versions/2.7/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _imaging.c -o build/temp.macosx-10.8-intel-2.7/_imaging.o
unable to execute clang: No such file or directory
error: command 'clang' failed with exit status 1
----------------------------------------
Cleaning up…
Poderia me ajudar a instalar o PIL ??
python
python-2.7
installation
pip
python-imaging-library
user3006710
fonte
fonte
Respostas:
https://pypi.python.org/pypi/Pillow/2.2.1
Se você possui os dois Pythons instalados e deseja instalar isso no Python3:
fonte
clang
erro no OSX Mavericks quando eu tentei isso, mas eu achei que esta resposta ajudou com que: stackoverflow.com/a/22322645/16959import Image
. Existe uma maneira de obter Pillow para fornecer imagem?Isso funciona para mim:
fonte
# ln -s /usr/lib/`uname -i`-linux-gnu/libfreetype.so /usr/lib/
sudo ln -s /usr/include/freetype2 /usr/local/include/freetype
É muito simples usando o apt install, use este comando para fazê-lo
ou
ou
fonte
No Mac OS X, use este comando:
fonte
brew install libjpeg
Você deve instalar como descrito aqui :
fonte
Eu recebi a resposta de uma discussão aqui :
eu tentei
e funcionou.
fonte
pip install --no-index -f http://effbot.org/downloads/ -U PIL --trusted-host effbot.org
A razão que eu usei este é porque é a URL listada pelo pacote e sobre pypi.python.org/pypi/PILInstalar
Em seguida, basta importar no seu arquivo como,
Eu estou usando o windows Está funcionando para mim.
ie mudança:
import Image
para:
from PIL import Image
https://pypi.org/project/Pillow/2.2.1/
fonte
from PIL import Image
nunca pude adivinhar que o nome desta biblioteca era 'Pillow'. Também estou no Windows e sua solução funcionou para mim.import Image
parafrom PIL import Image
pypi.org/project/Pillow/2.2.1Presumo que você esteja no Mac. Consulte Como instalar o PIL no mac os x 10.7.2 Lion
fonte
pil
, ele não faz issopip
como o OP tentou inicialmente. Acho o uso abundante dabrew
web hoje em dia subótimo.brew
instalará um pouco de sobrecarga, dependendo do que você deseja que ele faça. por issopip
provavelmente ainda ser a melhor escolha para módulos Python.Hoje em dia, todo mundo usa Pillow, um garfo PIL amigável, sobre PIL.
Ao invés de:
sudo pip install pil
Faz:
sudo pip install pillow
fonte
sudo pip install ...
. Isso pode acabar com a instalação do Python no sistema, o que pode afetar os aplicativos do sistema. Tente usar ambientes virtuais Anaconda , venv ou Docker.Para o Ubuntu, o PIL não está mais funcionando. Eu sempre recebo:
Então instale o python-imaging:
fonte
Estou tendo o mesmo problema, mas ele é resolvido com a instalação do
python-dev
.Antes de instalar o PIL, execute o seguinte comando:
Em seguida, instale o PIL:
fonte
pip install pil
resulta emNo distributions at all found for PIL
eu instalar o python-dev primeiro ou não.Eu tive alguns erros durante a instalação. Apenas no caso de alguém ter isso também. Apesar disso, eu já estava sentado sob o usuário administrador, mas não como root.
Adicionar "sudo" resolveu o problema, com o sudo funcionou:
fonte
Para o CentOS:
fonte
Eu tentei todas as respostas, mas falhei. Obtenha diretamente a fonte do site oficial e crie o sucesso da instalação.
tar xf Imaging-1.1.7.tar.gz
cd Imaging-1.1.7
sudo python setup.py install
fonte
Eu preguei usando
sudo port install py27-Pillow
fonte
Tente o seguinte:
fonte
sudo pip install --allow-external --allow-unverified PIL PIL
também pode funcionar por enquanto.--allow-external
e--allow-unverified
ambos estão obsoletos.pip install pillow
é a resposta correta.(Janela) Se o Pilow não funcionar, faça o download do pil em http://www.pythonware.com/products/pil/
fonte
Primeiro, você deve executar isso, o
sudo apt-get build-dep python-imaging
que fornecerá todas as dependências necessárias.Então corra
sudo apt-get update && sudo apt-get -y upgrade
Seguido por
sudo apt-get install python-pip
E, finalmente, instale o Pil
pip install pillow
fonte
Pesquise no gerenciador de pacotes antes de usar
pip
. No Arch linux, você pode obter o PILpacman -S python2-pillow
fonte
Há outra ferramenta de pacote Python chamada
conda
. A Conda é preferível (acredito) ao pip, quando existem bibliotecas que precisam instalar o C ++ e outras ligações que não são Python puro. O Conda também inclui o pip em sua instalação, para que você ainda possa usar o pip, mas também obtém os benefícios do conda.A Conda também instala o IPython , pil e muitas outras bibliotecas por padrão. Eu acho que você vai gostar.
fonte