You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was helping my co-worker to build the ./micro-ecommerce folder with Docker Compose. We tried to run the docker-compose up --build command against it, but the AttributeError: 'EntryPoints' object has no attribute 'get' error occurred. Here is the library where the problem is.
After the research, we found the main problem (celery/celery#7783 and). The solution was to lock the version of importlib-metadata<5.0 library in the requirements.txt file.
The text was updated successfully, but these errors were encountered:
VolodymyrSmahliuk
changed the title
Mirco-ecommerce build faied with AttributeError: 'EntryPoints' object has no attribute 'get'
Mirco-ecommerce build faied with AttributeError: 'EntryPoints' object has no attribute 'get' (Providing for the Community - Not a Question)
Aug 18, 2023
Description
I was helping my co-worker to build the
./micro-ecommerce
folder with Docker Compose. We tried to run thedocker-compose up --build
command against it, but theAttributeError: 'EntryPoints' object has no attribute 'get'
error occurred. Here is the library where the problem is.Click to show full error/trace message
Solution
After the research, we found the main problem (celery/celery#7783 and). The solution was to lock the version of
importlib-metadata<5.0
library in the requirements.txt file.The text was updated successfully, but these errors were encountered: