python - Python 图像库在 PyPI 上不可用,还是我遗漏了什么?

标签 python django python-imaging-library

easy_install pil 导致错误:

Searching for pil
Reading http://pypi.python.org/simple/pil/
Reading http://www.pythonware.com/products/pil
Reading http://effbot.org/zone/pil-changes-115.htm
Reading http://effbot.org/downloads/#Imaging
No local packages or download links found for pil
error: Could not find suitable distribution for Requirement.parse(‘pil’)

有什么想法吗?

--

更新: 嗯,要求它在 Python Ware 站点上查找链接似乎有效:

easy_install -f http://www.pythonware.com/products/pil/Imaging

不过一路上收到了一堆警告。我会看看结果如何。

--

更新:我可以使用 import Image 在 Python 中导入它,但是当我告诉 Django 到 syncdb 时,我仍然收到以下错误:

Error: One or more models did not validate:
core.userprofile: “avatar”: To use ImageFields, you need to install the Python Imaging Library. Get it at http://www.pythonware.com/products/pil/ .

我在我的一个模型中使用 ImageField。

最佳答案

PIL 当然在 PyPi 上!具体来说,它是 right here .

关于python - Python 图像库在 PyPI 上不可用,还是我遗漏了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/994281/

相关文章:

python - 使用 -1 语法时,Numpy `resize` 给出意外的数组大小

python - 关于Python中的序列类型

django - 为什么 save_model 方法在 admin.StackedInline 中不起作用?

django的collectstatic收集到意外的目录中

python - 在 Python 中动态访问类实例 "name"

python - 如何将操作数据从 .fits 文件转换为 pandas DataFrame

Django 休息框架 : is it possible to modify a Serializer class at runtime?

python - 为什么这个 PIL 调用会使 python 崩溃?

python - 如何在python中将24色bmp图像转换为16色bmp

python (PIL) : Lighten transparent image and paste to another one