没有名为' ImageDraw'

时间:2018-04-05 19:13:53

标签: python

我正在尝试用Python创建一个wordcloud。

请输入此代码:

from PIL import Image
import ImageDraw
img_grey = Image.new("L", (10, 15))
draw = ImageDraw.Draw(img_grey)

我收到此错误 没有名为' ImageDraw'

的模块

PS:我已经在命令提示符下安装了pip

2 个答案:

答案 0 :(得分:0)

执行" pip install Pillow"或者" pip install Pillow"在你的python环境中,然后再次运行

答案 1 :(得分:0)

以下内容解决了我的问题:

#import Image, ImageDraw, ImageChops
from PIL.Image import core as Image
from PIL import ImageDraw
from PIL import ImageChops

任何形式的程序包依赖关系都是一场灾难,等待着发生。我是一个较旧的扩展过程的受害者,该过程现在由于PIL的更新而中断。旨在仅源代码控制最终的完整项目源代码,包括任何库,并避免动态构建依赖项或对系统范围的软件包的依赖项! Pip,npm,您最喜欢的软件包管理器是构建过程的一部分,这是白痴。