web-dev-qa-db-ja.com

Spyder(Anaconda 3)にPILをインストールする方法

これは、conda install PILを使用してインストールを続けると問題になります。

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

使用する

from pil import Image

の代わりに

from PIL import Image
0
Jayesh Baviskar