gpt4 book ai didi

pip、PIL 和 Pillow

转载 作者:行者123 更新时间:2023-12-04 17:54:53 27 4
gpt4 key购买 nike

我运行了以下命令将项目依赖项安装到 virtualenv novacek 中:

(novacek) $ pip install -r reqs.txt

reqs.txt 看起来像这样:

Django==1.4.4
Pillow==1.7.8
South==0.7.6
django-bootstrap-toolkit==2.8.0
django-debug-toolbar==0.9.4
django-filebrowser==3.5.1
-e git+https://github.com/ir4y/django-flatblocks.git@4f8b2c86fe94e19dc7aa86b80a204918e2142aff#egg=django_flatblocks-dev
django-generic-flatblocks==0.9.1
django-grappelli==2.4.3
django-hvad==0.2
django-photologue==2.5
docutils==0.10
psycopg2==2.4.6
wsgiref==0.1.2

如您所见,没有 PIL 包,只有 Pillow,但在安装过程的最后我得到了这个:

--------------------------------------------------------------------
PIL 1.1.7 SETUP SUMMARY
--------------------------------------------------------------------
version 1.1.7
platform linux2 2.7.3 (default, Feb 21 2013, 13:39:24)
[GCC 4.4.6 20120305 (Red Hat 4.4.6-4)]
--------------------------------------------------------------------
*** TKINTER support not available
*** JPEG support not available
*** ZLIB (PNG/ZIP) support not available
*** FREETYPE2 support not available
*** LITTLECMS support not available
--------------------------------------------------------------------

这很奇怪。我之前还获得了 Pillow 的设置摘要(顺便说一句,启用了对 jpeg 和 zlib 的支持。因为 Pillow 实际上可以找到我的库)。

如果我在安装后从 virtualenv 运行 pip freeze,我会得到这个:

Django==1.4.4
PIL==1.1.7
Pillow==1.7.8
South==0.7.6
django-bootstrap-toolkit==2.8.0
django-debug-toolbar==0.9.4
django-filebrowser==3.5.1
-e git+https://github.com/ir4y/django-flatblocks.git@4f8b2c86fe94e19dc7aa86b80a204918e2142aff#egg=django_flatblocks-dev
django-generic-flatblocks==0.9.1
django-grappelli==2.4.3
django-hvad==0.2
django-photologue==2.5
docutils==0.10
psycopg2==2.4.6
wsgiref==0.1.2

PIL 已陷入依赖关系。为什么?

最佳答案

这是完全正确的。 Pillow 是一个 fork ,PIL 的替代重新包装。

来自PyPI page for Pillow :

The fork author's goal is to foster packaging improvements via:

  • Publicized development and solicitation of community support.
  • Exploration of packaging problems within the fork, most noticably via adding setuptools support but also via clean up & refactoring of packaging code.

在包内,这仍然是 PIL 项目,并且在编译时仍会以该名称发出消息。

不幸的是,Pillow 并未声称满足 PIL 要求,因此任何依赖 PIL 的东西仍然会引入 PIL。

关于pip、PIL 和 Pillow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15141823/

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