首页 文章

Celery ImportError:没有名为proj的模块

提问于
浏览
4

我正在尝试用Django设置Celery . 我遵循了指南:

项目/工程/ celery.py:

from __future__ import absolute_import

import os

from celery import Celery

from django.conf import settings

# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')

app = Celery('proj')

# Using a string here means the worker will not have to
# pickle the object when using Windows.
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)

然后在......

project/project/__init__.py:


from __future__ import absolute_import

# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app

项目/应用/测试/ tasks.py

from __future__ import absolute_import

from celery import shared_task


@shared_task
def add(x, y):
    return x + y

然后运行:

芹菜 - 一个项目 Worker -l info

这给出了错误:

File "/Users/user/Documents/workspace/test-api/env/lib/python2.7/site-packages/kombu/utils/__init__.py", line 92, in symbol_by_name
    module = imp(module_name, package=package, **kwargs)
  File "/Users/user/Documents/workspace/test-api/env/lib/python2.7/site-packages/celery/utils/imports.py", line 101, in import_from_cwd
    return imp(module, package=package)
  File "/usr/local/Cellar/python/2.7.8_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
    __import__(name)
ImportError: No module named proj

2 回答

  • 9

    我只是想说,如果你已经正确命名了所有内容并且你仍然找不到模块错误(我花了好几个小时试图解决这个问题)...那么你必须放置命令“celery -A proj worker -l info”应用程序分支上方

    “celery程序可以用来启动worker(你需要在proj上面的目录中运行worker):”按照文档

  • 13

    您的项目名为 project ,而不是 proj . 你应该始终使用该名称 .

相关问题