Re: curses is not imported under Linux (and Python 2.4)

2005-01-09 Thread Konrad Koller
Thanks for your hint. >What Linux distro? SuSE 9.1 >Is the Python version you're running one you compiled, one that shipped >with the distro, or a 3rd party RPM? compiled with Python-2.4.tar.bz2 > >At a guess, I'd say you compiled it yourself and you don't have the >ncurses development packages (pr

Re: curses is not imported under Linux (and Python 2.4)

2005-01-06 Thread Craig Ringer
On Fri, 2005-01-07 at 00:38, Konrad Koller wrote: > import curses > produces the ImportError: No module named _curses > ("from _curses import *" in line 15 in __init__.py) > Of course imp.find_module ("_curses") reports the same error. > How can I make use of the curses package for writing a Pytho

Re: curses is not imported under Linux (and Python 2.4)

2005-01-06 Thread Steve Holden
Konrad Koller wrote: import curses produces the ImportError: No module named _curses ("from _curses import *" in line 15 in __init__.py) Of course imp.find_module ("_curses") reports the same error. How can I make use of the curses package for writing a Python script with curses? I get the same th