gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 05:17:01 25 4
gpt4 key购买 nike

我想在我的 mac osx 10.9 上安装 Pillow for Python 3.4 (PIL fork)。我在网上搜索过,但没有找到安装的方法。有什么想法吗?

最佳答案

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

Homebrew provides a formula for Python 2.7.x and one for Python 3.x. They don't conflict, so they can both be installed. The executable python will always point to the 2.x and python3 to the 3.x version.

所以:

$ 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()

关于python - 在 Mac Os X Mavericks (10.9) 上安装 Pillow for Python 3.4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22992049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com