我想在我的mac osx 10.9上安装Pillow for Python 3.4(PIL fork)。我在网上搜索但发现无法安装它。有什么想法吗?
答案 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()