gpt4 book ai didi

python - 无法让 PIL 在 Ubuntu 12.04 上正确安装

转载 作者:太空狗 更新时间:2023-10-29 22:09:46 24 4
gpt4 key购买 nike

我使用的是 Ubuntu 12.04,我在 PIL-hell 中。我已经尝试了所有可以在网上找到的关于安装 PIL 的建议,但我没有运气。我知道我有所有的依赖性。我已经尝试了所有的符号链接(symbolic link)方法。我修改了 setup.py 文件以确保它找到正确的目录。我也尝试过从源代码构建并通过 pip 安装。什么都不管用。这是我在安装时得到的:

--------------------------------------------------------------------
PIL 1.1.7 SETUP SUMMARY
--------------------------------------------------------------------
version 1.1.7
platform linux2 2.7.3 (default, Nov 4 2012, 15:42:19)
[GCC 4.4.3]
--------------------------------------------------------------------
*** TKINTER support not available
--- JPEG support available
--- ZLIB (PNG/ZIP) support available
--- FREETYPE2 support available
*** LITTLECMS support not available
--------------------------------------------------------------------

这是 selftest.py 显示的内容:

--------------------------------------------------------------------
PIL 1.1.7 TEST SUMMARY
--------------------------------------------------------------------
Python modules loaded from ./PIL
Binary modules loaded from ./PIL
--------------------------------------------------------------------
--- PIL CORE support ok
*** TKINTER support not installed
*** JPEG support not installed
*** ZLIB (PNG/ZIP) support not installed
*** FREETYPE2 support not installed
*** LITTLECMS support not installed
--------------------------------------------------------------------

我不知道还能尝试什么。我只是想玩一些愚蠢的 PNG 文件...

最佳答案

最简单的方法应该是:

sudo apt-get install python-imaging

如果你需要在 virtualenv 中安装,或者想要绝对最新的版本使用 pip。首先安装 pil 需要的一些东西,然后运行 ​​pip install:

sudo apt-get install libjpeg-dev libjpeg62 libjpeg62-dev zlib1g-dev libfreetype6 libfreetype6-dev
pip install PIL

回复下面的评论。如果您全新安装 ubuntu 12.04 并运行 apt-get install python-imaging,您将在系统上正确安装 PIL。在我的 ubuntu 12.04 机器上,当我运行 selftest.py 时,我得到以下输出:

--------------------------------------------------------------------
PIL 1.1.7 TEST SUMMARY
--------------------------------------------------------------------
Python modules loaded from /usr/lib/python2.7/dist-packages/PIL
Binary modules loaded from /usr/lib/python2.7/dist-packages/PIL
--------------------------------------------------------------------
--- PIL CORE support ok
*** TKINTER support not installed
--- JPEG support ok
--- ZLIB (PNG/ZIP) support ok
--- FREETYPE2 support ok
--- LITTLECMS support ok
--------------------------------------------------------------------

您正在寻找的 PNG 支持显示正常。我怀疑您的 python 安装可能处于某种损坏状态。也许您提到的符号链接(symbolic link)或安装此软件包的其他尝试已损坏您的安装。我可以给出三个建议来纠正这种情况

解决方案

  1. 在机器上重新安装 ubuntu。这绝对有效。
  2. 创建一个 python virtualenv然后使用 pip 安装 PIL。这可能会起作用,具体取决于基本 python 系统的损坏程度。这里的想法是默认情况下 virtualenv 将创建一个新的 python 环境,其中只有标准库。
  3. 修复你的 python 安装。您可以尝试 apt-get purge python-imaging 然后重新安装 python-imaging 包。

关于python - 无法让 PIL 在 Ubuntu 12.04 上正确安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13505621/

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