Why can't Python import Image from PIL?

后端 未结 17 1829
执念已碎
执念已碎 2020-12-03 06:49

The single line that I am trying to run is the following:

from PIL import Image

However simple this may seem, it gives an error:

         


        
17条回答
  •  隐瞒了意图╮
    2020-12-03 07:16

    The current free version is PIL 1.1.7. This release supports Python 1.5.2 and newer, including 2.5 and 2.6. A version for 3.X will be released later.

    Python Imaging Library (PIL)

    Your python version is 3.4.1, PIL do not support!

提交回复
热议问题