I am trying to create a python deployment package for AWS Lambda. I have followed documentation specified at Creating a Deployment Package (Python)
While testing created Lambda function, I am getting following error:
No module named pkg_resources
On debugging, identified that pint package requires this pkg_resources. AFAIK, pkg_resources will be created during Python distro installation.
I am assuming since Python is already available on Lambda server, it should also have the pkg_resources.
What am I missing here? Can someone please help?