我正在创建一个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或枕头
答案 0 :(得分:0)
也许您需要安装它们。
如果您使用蟒蛇:conda install PIL
如果您使用pip:pip install PIL
谢谢