我尝试在 AWS lambda 中使用 pytorch,但不断收到此错误。我用作arn:aws:lambda:us-east-1:934676248949:layer:pytorchv1-py36:2pytorch 的层,这是我的处理函数
import unzip_requirements
import torch
def lambda_handler(event, context):
return "Hello"
Run Code Online (Sandbox Code Playgroud)
正如在函数中一样,我只是导入火炬,它给了我这个错误。
{
"errorMessage": "Unable to import module 'lambda_function': No module named 'torch._C'",
"errorType": "Runtime.ImportModuleError"
}
Run Code Online (Sandbox Code Playgroud)