用点子安装PIL

时间:2013-11-18 23:22:29

标签: python python-2.7 installation pip python-imaging-library

我正在尝试使用以下命令安装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吗?

21 个答案:

答案 0 :(得分:488)

  1. 如上所述安装Xcode和Xcode命令行工具。
  2. 使用Pillow,因为PIL基本上已经死了。 Pillow是PIL的维护分支。
  3. https://pypi.python.org/pypi/Pillow/2.2.1

    pip install Pillow
    

    如果你安装了两个Pythons并想为Python3安装它:

    python3 -m pip install Pillow
    

答案 1 :(得分:60)

这对我有用:

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

答案 2 :(得分:55)

使用apt install使用此命令完成它非常简单

sudo apt-get install python-PIL

sudo pip install pillow

sudo easy_install pillow

答案 3 :(得分:34)

在Mac OS X上,使用以下命令:

sudo pip install https://effbot.org/media/downloads/Imaging-1.1.7.tar.gz

答案 4 :(得分:30)

您应该按照here所述进行安装:

pip install image

答案 5 :(得分:27)

我从讨论中得到了答案here

我试过

pip install --no-index -f http://dist.plone.org/thirdparty/ -U PIL

并且有效。

答案 6 :(得分:11)

现在,每个人都使用Pillow,一个友好的PIL叉子,而不是PIL。

而不是:sudo pip install pil

执行:sudo pip install pillow

$ sudo apt-get install python-imaging
$ sudo -H pip install pillow

答案 7 :(得分:11)

对于Ubuntu,PIL不再工作了。我总是得到:

  

找不到PIL的匹配分布

所以安装python-imaging:

sudo apt-get install python-imaging

答案 8 :(得分:10)

我认为你在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目录本身的位置添加到名为PIL.pth的文件中。   您的任何site-packages目录,其内容为:

/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
# build and install
python setup.py build
sudo python setup.py install
# or install it for just you without requiring admin permissions:
# python setup.py install --user
     

我刚刚运行了上述内容(在OSX 10.7.2上,使用XCode 4.2.1和System   Python 2.7.1)并且它构建得很好,尽管有可能   我环境中的某些东西是非默认的。

     

[homebrew]:http://mxcl.github.com/homebrew/“Homebrew”

答案 9 :(得分:8)

我遇到了同样的问题,但是通过安装python-dev来解决问题。

在安装PIL之前,请运行以下命令:

sudo apt-get install python-dev

然后安装PIL:

pip install PIL

答案 10 :(得分:5)

我在安装过程中遇到了一些错误。以防有人也这样做。尽管我已经坐在管理员用户下,但不是root用户。

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

答案 11 :(得分:5)

对于CentOS:

yum install python-imaging

答案 12 :(得分:5)

I tried all the answers, but faild. Directly get the source from the official site and then build install success.

  1. Go to the site http://www.pythonware.com/products/pil/#pil117
  2. 点击“Python Imaging Library 1.1.7 Source Kit”下载源
  3. tar xf Imaging-1.1.7.ta​​r.gz
  4. cd Imaging-1.1.7
  5. sudo python setup.py install

答案 13 :(得分:3)

试试这个:

sudo pip install PIL --allow-external PIL --allow-unverified PIL

答案 14 :(得分:3)

(窗口)如果Pilow不起作用,请尝试在http://www.pythonware.com/products/pil/

下载pil

答案 15 :(得分:3)

  • 首先,您应该运行此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

答案 16 :(得分:3)

我使用sudo port install py27-Pillow

对其进行了抨击

答案 17 :(得分:2)

在使用pip之前搜索包管理器。在Arch linux上,你可以通过pacman -S python2-pillow

获得PIL

答案 18 :(得分:1)

您可以使用apt install安装PIL:

对于Python 3,使用:

sudo apt install python3-pil

对于Python 2,请使用:

sudo apt install python-pil

如Clarkey252指出的,pil应该小写的地方

答案 19 :(得分:0)

还有另一个名为conda的Python包工具。当有些库需要安装C ++和其他不是纯Python的绑定时,Conda是首选(我相信)。 Conda在其安装中也包括pip,所以你仍然可以使用pip,但你也可以获得conda的好处。

Conda还默认安装IPython,pil和许多其他库。我想你会喜欢它。

答案 20 :(得分:0)

安装

pip install Pillow

然后,将文件添加到您的文件中,

from PIL import Image

我正在使用Windows。它对我有用。