I am trying to use ncurses in Python 2.6 on openSUSE 11.2, but the curses module appears to be missing.
I keep getting this error:
>>> import curses
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named curses
I tried installing ncurses-devel, but still get the same error.
Do I need to manually install the curses module, and if so how?
Thanks in advance!