【已解决】 Celery 报错:AttributeError: 'EntryPoints' object has no attribute 'get'
- 1、起因
- 2、实验环境
- 3、解决方案
1、起因
今天闲来无事学习 Celery 分布式任务队列,写好代码发布并执行,报错了 AttributeError: 'EntryPoints' object has no attribute 'get'
,如下图所示:
2、实验环境
Windows 11
Docker version 24.0.2
镜像:Python:3.7
3、解决方案
pip install frozenlist==1.3.1 geopy==2.2.0 humanize==4.3.0 idna==3.3 importlib-metadata==4.12.0 jsonschema==4.9.0 korean_lunar_calendar==0.2.1 marshmallow==3.17.0 pyOpenSSL==22.0.0 pyrsistent==0.18.1 python-dotenv==0.20.0 pytz==2022.2.1 selenium==4.4.0 simplejson==3.17.6 sniffio==1.2.0 trio==0.21.0 urllib3==1.26.11 wsproto==1.1.0 zipp==3.8.1
如果上述安装仍未解决,则执行以下安装,笔者执行完上述安装即能解决问题
pip install backoff==2.1.2 colorama==0.4.5 croniter==1.3.5 cryptography==37.0.4 email-validator==1.2.1 flask-compress==1.12 flask-migrate==3.1.0 aiohttp==3.8.1 aiosignal==1.2.0 Mako==1.2.1 Babel==2.10.3
安装完指定包之后,重新发布并执行 Celery,成功执行!