I'm trying to invoke aws lambda from another aws lambda using boto3 in python
in order to construct the first lambda I used serverless framework with custom: zip:true
when I invoke I get the massage:
{'errorMessage': "Unable to import module 'handler': No module named 'joblib'", 'errorType': 'Runtime.ImportModuleError'}
how can I unzip the first lambda requirements?
Thanks for your help