按照
本指南中的说明处理此错误消息:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/user/celery/tasks.py", line 1, in <module> from celery import Celery
ImportError: No module named 'celery'`
我使用的是安装了芹菜的虚拟环境。
我的命令是这样的:
#ran the celery app
$ source venv/bin/activate
$ celery -A tasks worker --loglevel=info
#then on another terminal
$ source venv/bin/activate
$ python
$ from tasks import add'
我在这里错过了什么吗?
似乎芹菜 3.1 与 Python 3.4.3 不兼容
我改用Python 2.7.3,现在导入工作正常