如何在 Spyder(Anaconda 3) 上安装 PIL?

How to install PIL on Spyder(Anaconda 3)?

这是我继续使用 conda install PIL 安装时出现的问题 它给了我这个:

UnsatisfiableError: The following specifications were found to be in conflict:
  - pil -> python 2.6*
  - python 3.6*

PIL 似乎不再维护了。只需安装枕头:

conda install pillow

并像安装了 PIL 一样使用:

from PIL import Image

我可以通过安装 pillow 版本 5 来解决问题,请尝试一次。

conda install --channel conda-forge pillow=5

使用

from pil import Image

而不是

from PIL import Image