如何在Mac OS上用pip安装PIL ?

我正在尝试使用命令安装PIL (Python映像库):

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吗?

1072355 次浏览

我猜你用的是Mac,见如何在mac os x 10.7.2 Lion上安装PIL

如果你使用家酿,你可以只使用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
# 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和系统 Python 2.7.1)并且它构建得很好,尽管存在这种可能性 我的环境中的某些东西是非默认的

  1. 安装Xcode和Xcode命令行工具。
  2. 使用Pillow代替,因为PIL基本上已经死了。枕头是PIL的保养叉。

https://pypi.org/project/Pillow/

pip install Pillow

如果你已经安装了两个python,并且想为Python3安装这个:

python3 -m pip install Pillow

我有同样的问题,但它得到解决安装python-dev

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

sudo apt-get install python-dev

然后安装PIL:

pip install PIL

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

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

这对我来说很管用:

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

我通过使用sudo port install py27-Pillow来解决它

CentOS的:

yum install python-imaging

还有另一个名为conda的Python包工具。当有库需要安装c++和其他非纯Python的绑定时,Conda比pip更可取(我相信)。Conda在其安装中也包含pip,因此您仍然可以使用pip,但也可以获得Conda的好处。

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

我在安装过程中出现了一些错误。以防有人也有这个。尽管如此,我已经坐在管理员用户下,而不是根用户。

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

我从一次讨论中得到了答案:

我试着

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

这招奏效了。

这是非常简单的使用apt安装使用这个命令来完成

sudo apt-get install python-PIL

sudo pip install pillow

sudo easy_install pillow

试试这个:

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

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

PIL没有找到匹配的分布

安装python-imaging:

sudo apt-get install python-imaging

(窗口)如果枕头不能工作尝试下载pil在http://www.pythonware.com/products/pil/

  • 首先你应该运行这个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

这些天,每个人都使用枕头,一个友好的PIL叉子,而不是PIL。

而不是:sudo pip install pil

做的事:sudo pip install pillow

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

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

我试了所有的答案,但是失败了。 直接从官方网站获取源代码,然后build install success.

  1. 去网站http://www.pythonware.com/products/pil/#pil117
  2. 点击“Python Imaging Library 1.1.7 Source Kit”下载源代码
  3. tar xf Imaging-1.1.7.tar.gz
  4. cd Imaging-1.1.7
  5. sudo python setup.py install

你应该按照描述的在这里安装:

pip install image

安装

pip install Pillow

然后,导入你的文件,

from PIL import Image

我用的是windows。这对我很有用。

请注意:

Pillow是Python Imaging的功能性替代品 图书馆。要使用Pillow运行现有的与pil兼容的代码,请使用 需要修改从PIL导入Imaging模块

.

.

即改变:

import Image

:

from PIL import Image

https://pypi.org/project/Pillow/2.2.1/

对于Ubuntu,你可以使用apt install安装PIL:

对于Python 3,请使用:

sudo apt install python3-pil

对于Python 2使用:

sudo apt install python-pil

哪里pil应该小写Clarkey252指出