Heroku PIL ModuleNotFoundError:没有名为“图像”的模块

时间:2020-07-06 02:43:06

标签: python heroku python-imaging-library

我正在创建一个Heroku应用,其中我正在使用PIL中的PIL import Image

当我运行heroku local时,它将返回ModuleNotFoundError: No module named 'Image'。我尝试使用枕头而不是PIL,但是它返回相同的错误。 PIL和Pillow都在我的requirements.txt中。

指向我的完整github存储库的链接是:https://github.com/maivey/flower-image-classifier

请提供帮助,因为我不明白为什么它不能识别PIL或枕头

1 个答案:

答案 0 :(得分:0)

也许您需要安装它们。 如果您使用蟒蛇:conda install PIL 如果您使用pip:pip install PIL

谢谢