I am just starting using AWS Lambda functions, and I come across this situation. I have the most basic python lambda function ( the Hello-World example ) generated from using sam init
and when I use sam build
I am receiving this error message :
' Build Failed Error: PythonPipBuilder:ResolveDependencies - Could not satisfy the requirement: requests '
The requirements.txt file contains only : requests
and the tutorial used is here :
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-getting-started-hello-world.html
Please, help me with this situation.
Thank you!