AWS S3 Lambda Python脚本函数执行时报错AttributeError: module ‘PIL‘ has no attribute ‘,Image‘cannot import nam

2024-04-25 15:00:57 浏览数 (1)

背景

代码示例如下

代码语言:javascript复制
import PIL
def add_image(self, tag, img, step):
    summary = Summary()
    bio = BytesIO()
 
    if type(img) == str:
        img = PIL.Image.open(img)
    elif type(img) == PIL.Image.Image:
        pass
    else:
        img = scipy.misc.toimage(img)

python脚本在本地可以执行,但是放到S3的Lambda中却总是报这个错

代码语言:javascript复制
AttributeError: module ‘PIL‘ has no attribute ‘,Image‘cannot import name '_imaging' from 'PIL'

原因

原因是Lambda的Layer层,添加的脚本执行环境eve,打包压缩的zip包有问题,没有按照标准的解压流程去执行。

我一开始是直接把PIL和Pillow包直接压缩打成了一个zip包,这种就少了一些基础的执行环境依赖,标准的打包流程如下。

参考链接

https://github.com/keithrozario/Klayers/issues/154

https://docs.aws.amazon.com/lambda/latest/dg/packaging-layers.html#packaging-layers-paths

https://docs.aws.amazon.com/lambda/latest/dg/python-layers.html#python-layer-packaging

0 人点赞