安装PIL时出错

时间:2017-05-10 06:56:39

标签: python python-imaging-library

我尝试安装PIL但出错了。错误消息是:

  

找不到满足要求PIL的版本(来自版本:)没有为PIL找到匹配的分发。

我的软件版本是:

  • Python:3.6.1

  • Pip:9.0.1

  • Django:1.11.1

1 个答案:

答案 0 :(得分:1)

Pillow PIL 不能在同一环境中共存。在安装Pillow之前,请先卸载PIL和Pillow。

然后使用pip install pillow

安装枕头

然后确保代码使用from PIL import Image而不是import Image

(Pillow的许多功能都需要外部库。检查list并安装它们)