在Mac Os X Mavericks上安装Python 3.4 for Pillow(10.9)

时间:2014-04-10 15:12:32

标签: python macos pillow

我想在我的mac osx 10.9上安装Pillow for Python 3.4(PIL fork)。我在网上搜索但发现无法安装它。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

我通过Homebrew安装了Python 2和Python 3:

  

Homebrew提供了Python 2.7.x的公式和Python 3.x的公式。他们没有冲突,所以他们都可以安装。可执行文件python将始终指向2.x和python3到3.x版本。

所以:

$ brew update
$ brew install python3

这也为Python 2提供了pip,为Python 3提供了pip3。所以你可以install Pillow喜欢:

$ brew install libtiff libjpeg webp little-cms2
$ pip3 install pillow

然后:

$ python3
Python 3.4.0 (default, Apr  9 2014, 11:51:10) 
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from PIL import Image
>>> im = Image.open("image.png")
>>> im.show()