This repository was archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
cannot import name 'EntryPoints' from 'importlib_metadata' #49
Comments
I encounter the same error. When running
Solution/Fix: Upgrading the
to
fixed the issue for me. The Docker images could now build. I didn't have to switch python versions. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've faced an error
cannot import name 'EntryPoints' from 'importlib_metadata'
inside the lambda function.Investigation
I have found aws/aws-lambda-python-runtime-interface-client#61 and aws/aws-lambda-python-runtime-interface-client#61
Problem from awslambdaric which depends on an old version of
importlib-metadata
(2.0.0) which is overriding the version use bySwitching to python 3.8 fixed the issue.
The text was updated successfully, but these errors were encountered: