我遵循了https://docs.aws.amazon.com/lambda/latest/dg/lambda-python-how-to-create-deployment-package.html的AWS指南,直到虚拟环境部分为止。
我的zip文件结构看起来像这样-
bin
numpy
numpy-1.15.2.dist-info
myscript.py
将zip文件上传到AWS Lambda时出现错误。错误显示-
{
"errorMessage": "Unable to import module 'testingUpload'"
}
我所有的脚本文件都包含
import numpy
def lambda_handler(event, context):
print ("This is the test package")
当我上传没有import numpy
的zip文件时,它可以正常工作。
def lambda_handler(event, context):
print ("This is the test package")