python celery - ImportError:没有名为_curses的模块 - 在尝试运行manage.py celeryev时

sna*_*ies 11 python curses celery

背景

Windows 7 x 64 Python 2.7 Django 1.4 Celery与Redis捆绑

在尝试运行manage.py celeryev时,我在终端中收到以下错误

import curses
File 'c:\Python2\lib\curses\__init__.py', line 15, in <module> from _curses import *
ImportError: No module named _curses
Run Code Online (Sandbox Code Playgroud)

我试过看其他帖子,但一直无法解决这个问题.有关导致此错误的原因的任何想法?提前致谢.

cgo*_*lke 15

根据http://docs.python.org/library/curses.html,仅在Unix平台上支持curses模块.尝试http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses中的Windows二进制文件.