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
一路上得到了一堆警告。我会看看结果如何。
--
更新:我可以使用 Python 在 Python 中导入它import Image
,但是当我告诉 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。