<질문>
다음 명령을 사용하여 PIL(Python Imaging Library)을 설치하려고 합니다.
sudo pip install pil
하지만 다음 메시지가 나타납니다.
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…
설치를 도와주세요PIL
?
<답변1>
- 언급한 대로 Xcode 및 Xcode 명령줄 도구를 설치합니다.
- 대신 Pillow를 사용하십시오. PIL은 기본적으로 죽었습니다. Pillow는 PIL의 유지 관리 포크입니다.
https://pypi.org/project/Pillow/
pip install Pillow
두 Python이 모두 설치되어 있고 Python3용으로 설치하려는 경우:
python3 -m pip install Pillow
<답변2>
이것은 나를 위해 작동합니다:
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
pip install PIL --allow-unverified PIL --allow-all-external
<답변3>
apt install을 사용하는 것은 매우 간단합니다. 이 명령을 사용하여 완료하십시오.
sudo apt-get install python-PIL
또는
sudo pip install pillow
또는
sudo easy_install pillow
<답변4>
설치하다
pip install Pillow
그런 다음 다음과 같이 파일을 가져옵니다.
from PIL import Image
윈도우를 사용하고 있습니다. 그것은 나를 위해 일하고 있습니다.
참고: Pillow는 Python Imaging Library를 대체하는 기능적 드롭인입니다. Pillow로 기존 PIL 호환 코드를 실행하려면 전역 네임스페이스 대신 PIL 네임스페이스에서 Imaging 모듈을 가져오도록 수정해야 합니다.
즉 변경:
import Image
에게:
from PIL import Image
https://pypi.org/project/Pillow/2.2.1/
<답변5>
설명대로 설치해야 합니다.here:
pip install image
<답변6>
Mac OS X에서는 다음 명령을 사용합니다.
sudo pip install https://effbot.org/media/downloads/Imaging-1.1.7.tar.gz
<답변7>
토론에서 답을 얻었습니다.here:
나는 시도했다
pip install --no-index -f http://dist.plone.org/thirdparty/ -U PIL
그리고 그것은 효과가 있었다.
<답변8>
나는 당신이 Mac에 있다고 생각합니다. 보다How can I install PIL on mac os x 10.7.2 Lion
homebrew를 사용하는 경우 brew install pil만으로 PIL을 설치할 수 있습니다. 그런 다음 설치 디렉터리($(brew --prefix)/lib/python2.7/site-packages)를 PYTHONPATH에 추가하거나 PIL.pth 파일이라는 파일에 PIL 디렉터리 자체의 위치를 추가해야 할 수 있습니다. /usr/local/lib/python2.7/site-packages/PIL(brew --prefix가 /usr/local이라고 가정)의 내용이 포함된 사이트 패키지 디렉토리. 또는 소스에서 다운로드/빌드/설치할 수 있습니다: # download curl -O -L http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz # extract tar -xzf Imaging-1.1 .7.tar.gz cd Imaging-1.1.7 # python setup.py 빌드 및 설치 build sudo python setup.py install # 또는 관리자 권한 없이 사용자를 위해 설치: # python setup.py install --user I run 위의 내용(OSX 10.7.2, XCode 4.2.1 및 System Python 2.7.1 포함)은 정상적으로 빌드되었지만 내 환경의 무언가가 기본값이 아닐 가능성이 있습니다.
<답변9>
요즘에는 모든 사람들이 PIL보다 친숙한 PIL 포크인 Pillow를 사용합니다.
대신에:sudo pip install pil
하다:sudo pip install pillow
$ sudo apt-get install python-imaging
$ sudo -H pip install pillow
<답변10>
Ubuntu의 경우 PIL이 더 이상 작동하지 않습니다. 나는 항상 얻는다:
PIL에 대해 일치하는 분포가 없습니다.
따라서 python-imaging을 설치하십시오.
sudo apt-get install python-imaging
<답변11>
저도 같은 증상인데 설치하면 해결됩니다.python-dev
.
PIL을 설치하기 전에 다음 명령을 실행하십시오.
sudo apt-get install python-dev
그런 다음 PIL을 설치합니다.
pip install PIL
<답변12>
설치하는 동안 약간의 오류가 있었습니다. 누군가가 이것도 가지고있는 경우를 대비하여. 그럼에도 불구하고 나는 이미 admin 사용자 아래에 있었지만 루트는 아닙니다.
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 157, in makedirs
mkdir(name, mode)
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/PIL'
Storing debug log for failure in /Users/wzbozon/Library/Logs/pip.log
"sudo"를 추가하면 문제가 해결되었고 sudo가 작동했습니다.
~/Documents/mv-server: $ sudo pip install Pillow
<답변13>
CentOS의 경우:
yum install python-imaging
<답변14>
모든 대답을 시도했지만 실패했습니다. 공식 사이트에서 직접 소스를 받아서 빌드하면 설치가 성공합니다.
- 사이트로 이동http://www.pythonware.com/products/pil/#pil117
- 소스를 다운로드하려면 "Python Imaging Library 1.1.7 소스 키트"를 클릭하십시오.
tar xf Imaging-1.1.7.tar.gz
cd Imaging-1.1.7
sudo python setup.py install
<답변15>
이용해서 해결했습니다sudo port install py27-Pillow
<답변16>
이 시도:
sudo pip install PIL --allow-external PIL --allow-unverified PIL
<답변17>
(Window) Pilow가 작동하지 않으면 다음 위치에서 pil을 다운로드하십시오.http://www.pythonware.com/products/pil/
<답변18>
먼저 필요한 모든 종속성을 제공하는 이
sudo apt-get build-dep python-imaging
을 실행해야 합니다.그런 다음
sudo apt-get update && sudo apt-get -y upgrade
합니다.다음에
sudo apt-get install python-pip
그런 다음 마지막으로 Pil
pip install pillow
를 설치합니다.
<답변19>
사용하기 전에 패키지 관리자에서 검색pip
. 아치 리눅스에서는 다음과 같이 PIL을 얻을 수 있습니다.pacman -S python2-pillow
<답변20>
Ubuntu의 경우 다음을 사용하여 PIL을 설치할 수 있습니다.apt install
:
Python 3의 경우 다음을 사용합니다.
sudo apt install python3-pil
Python 2의 경우 다음을 사용합니다.
sudo apt install python-pil
어디에pil
Clarkey252가 지적한 것처럼 소문자여야 합니다.
<답변21>
라는 또 다른 Python 패키지 도구가 있습니다.conda
. C++ 및 순수 Python이 아닌 기타 바인딩을 설치해야 하는 라이브러리가 있는 경우 pip보다 Conda가 선호됩니다. Conda는 설치 시 pip도 포함하므로 pip를 계속 사용할 수 있지만 conda의 이점도 얻을 수 있습니다.
콘다도 설치IPython, pil 및 기타 여러 라이브러리가 기본적으로 제공됩니다. 좋아하실 것 같아요.
'개발 > Python' 카테고리의 다른 글
[파이썬] sql에서 'count(distinct)'를 Pandas에서 하는 방법 (0) | 2023.01.21 |
---|---|
[파이썬] 선택적 인수가 있는 함수를 정의하는 방법 (0) | 2023.01.21 |
[파이썬] locale error: unsupported locale setting (0) | 2023.01.21 |
[파이썬] 리스트에서 요소 찾아 바꾸기 (0) | 2023.01.21 |