Error no module named curses

You could also look into installing the curses module from here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses.

It allows python's native curses to be used on Windows, so all your standard python curses code can be used.


Install the UniCurses module from here: https://pypi.python.org/pypi/UniCurses

You may need to alter some of your code in order to use it, as it provides the functionality of NCurses, not the vanilla curses library.

Unfortunately, no direct Python for Windows port of curses exists.


That works for me:

pip install windows-curses