当我继续使用conda install PIL进行安装时,这就是问题所在 它给了我这个:
UnsatisfiableError: The following specifications were found to be in conflict:
- pil -> python 2.6*
- python 3.6*
答案 0 :(得分:23)
PIL似乎不再维持。只需安装枕头:
conda install pillow
并使用就像安装了PIL一样:
from PIL import Image
答案 1 :(得分:2)
我可以通过安装枕头版本5来解决问题,请尝试一次。
conda install --channel conda-forge pillow=5
答案 2 :(得分:0)
使用
from pil import Image
代替
from PIL import Image