背景
代码示例如下
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中却总是报这个错
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
标签:layers,PIL,img,no,S3,Image,import,Lambda From: https://www.cnblogs.com/lingyejun/p/18156503