Django Celery:manage.py celeryd 返回“未知命令”
我正在尝试使用 Django ORM 作为后端来设置 Celery。
我已经安装了所有必需的软件包(django-celery,djkombu),完成了 文档指定的所有操作,运行syncdb来生成必要的数据库表。
不过,当我尝试通过 manage.py 命令启动 Celery 时,我收到“未知命令”错误。
python manage.py celeryd
Unknown command: 'celeryd'
我认为我遗漏了一些关键细节,但无法弄清楚是什么。
这就是我的settings.py 文件的样子。 有人可以指出我做错了什么吗?
I'm trying to setup Celery with Django ORM as backend.
I've installed all required packages(django-celery, djkombu), done everything specified by the docs, ran syncdb to generate necessary DB tables.
Still, when I'm trying to launch Celery through manage.py command, I'm getting an 'Unknown Command' error.
python manage.py celeryd
Unknown command: 'celeryd'
I think I'm missing some crucial detail but can't figure out what.
This is how my settings.py file look like. Can anyone please point out what I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您安装的应用程序中似乎没有 djcelery
http://pypi.python.org/ pypi/django-celery#documentation
Doesn't look like you have djcelery anywhere in your installed apps
http://pypi.python.org/pypi/django-celery#documentation