1

我正在使用 python v2.7.3 - 通过 easy_install 安装了 python-rq。在尝试使用http://python-rq.org/中给出的步骤创建 RQ 队列时。它失败了,像这样的消息

>>> from redis import Redis
>>> from rq import Queue
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "rq.py", line 11, in <module>
    q = Queue(connection=Redis())
TypeError: 'module' object is not callable
>>> 
>>> q = Queue(connection=Redis())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'Queue' is not defined
>>> 

这里有什么问题以及如何解决这个问题?

4

1 回答 1

2

重新发布评论作为答案:

感谢你的回答。对不起我笨!.sometime back我创建了名为rq.py的文件及其创建问题。删除了那个文件。解决了这个问题

于 2014-04-15T17:31:57.543 回答