在安装了 Xcode 4 的 Mac Snow Leopard 上安装 PIL 的最佳方法是什么?

发布于 2024-10-23 18:39:54 字数 148 浏览 2 评论 0原文

在安装了 Xcode 4 的 Mac Snow Leopard 上安装 PIL 的最佳方法是什么?我看过很多关于在 Mac 上安装 PIL 有多困难的信息,但似乎没有什么是太明确的。有没有办法让它与 Snow Leopard 或 Xcode 4 附带的 Python 版本一起安装?

What is the best way to install PIL on Mac Snow Leopard with Xcode 4 installed? I have seen a lot of information about how difficult it is to install PIL on a Mac but nothing seems too definitive. is there any way to get it installed with the version of Python that comes with Snow Leopard or Xcode 4?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俯瞰星空 2024-10-30 18:39:54

先安装依赖

JPG

下载http://www.ijg.org/files/jpegsrc.v8c.tar.gz

tar xzf jpegsrc.v8c.tar.gz 
cd jpeg*
./configure
make
sudo make install

Freetype

来自 http://sourceforge.net/projects/freetype/files/

下载http://downloads.sourceforge.net/project/freetype/freetype2/2.4.4/freetype-2.4.4.tar.bz2

tar xjf freetype-2.4.4.tar.bz2
cd free*
./configure
make
sudo make install

LittleCMS 1.19 NOT 2.0+

不是这个 ----http://downloads.sourceforge.net/project/lcms/lcms/2.1/lcms2-2.1.tar.gz

而是下载< a href="http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz" rel="nofollow noreferrer">http://downloads.sourceforge.net/project/lcms /lcms/1.19/lcms-1.19.tar.gz

tar xzf lcms-1.19.tar.gz
cd lcms*
./configure
make
sudo make install

然后安装 PIL

ARCHFLAGS="-arch i386 -arch x86_64" sudo pip install PIL

(或者最好在 virtualenv 中)

ARCHFLAGS="-arch i386 -arch x86_64" pip install PIL

Install dependencies first

JPG

Download http://www.ijg.org/files/jpegsrc.v8c.tar.gz

tar xzf jpegsrc.v8c.tar.gz 
cd jpeg*
./configure
make
sudo make install

Freetype

from http://sourceforge.net/projects/freetype/files/

download http://downloads.sourceforge.net/project/freetype/freetype2/2.4.4/freetype-2.4.4.tar.bz2

tar xjf freetype-2.4.4.tar.bz2
cd free*
./configure
make
sudo make install

LittleCMS 1.19 NOT 2.0+

NOT this ----http:// downloads.sourceforge.net/project/lcms/lcms/2.1/lcms2-2.1.tar.gz

Instead download http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz

tar xzf lcms-1.19.tar.gz
cd lcms*
./configure
make
sudo make install

Then install PIL

ARCHFLAGS="-arch i386 -arch x86_64" sudo pip install PIL

(or preferably within a virtualenv)

ARCHFLAGS="-arch i386 -arch x86_64" pip install PIL
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文