所以,我试图用Tornado测试Celery,但是在Celery安装方面遇到了困难。
我使用的是Ubuntu 12.04 LTS。我有广告龙卷风现在工作了几个月。然后尝试使用python -m pip install tornado-celery
安装Celery。但是我在测试脚本中的导入命令不起作用。
例如,当我ImportError: unable to locate tasks
时,我会收到import tcelery, tasks
。
所以,我试图卸载Celery,认为出了问题。试过apt-get remove tornado-celery
。我收到错误Unable to locate package tornado-celery
。所以,我重新安装,然后它说Requirement already satisfied
。
发生了什么事?
答案 0 :(得分:0)
tasks.py
不是芹菜附带的模块 - 这个例子的想法就是你要编写自己的文件pip install
来完成你的任务。在那里'这是https://github.com/mher/tornado-celery/tree/master/examples
您的安装很好(据我所知),但是如果您确实要卸载它,请使用与安装时相同的程序卸载:安装pip uninstall
的东西只能卸载apt-get uninstall
,而非{{1}}。