从 app/app-core,我正在尝试使用以下命令启动 celery worker:
celery worker --app=app-core -l info
但是,我收到错误:
ImportError: No module named act-core
我正在关注本教程,并尝试将项目完全复制到名为 proj 的单独文件夹中。第一次用芹菜。. 我错过了什么?
另外,这是我的 celery.py 文件:
from __future__ import absolute_import
from celery import Celery
celery = Celery('proj.celery',
broker='amqp://',
backend='amqp://',
include=['proj.tasks'])
# Optional configuration, see the application user guide.
celery.conf.update(
CELERY_TASK_RESULT_EXPIRES=3600,
)
if __name__ == '__main__':
celery.start()