vote up 5 vote down star
2

hi there,

i'm looking into developing a console-app in python which should be able to run under windows as well as linux. for this, i'd really like to use a high-level console library like curses. however, as far as i know, curses is not available on windows. what other options do i have? unfortunately, using cygwin under windows is not an option ...

thanks for your help!

flag

so, if i look at your answers, there doesn't seem to be a good solution for my problem ... i will probably try force the users to use cygwin on windows. wish me luck ;) – andreash Aug 24 at 18:04

3 Answers

vote up 2 vote down check

There is a wcurses. I've never tried it but it may meet your needs. It sounds like it doesn't have full curses compatibility, but may be close enough. Also it might not be using the DOS terminal, but opening a GUI window and drawing monospaced text inside.

Other windows text mode options are:

I believe both are windows only.

link|flag
vote up 0 vote down

PDCurses works on Windows, but I don't know any Python wrapper. I wonder whether the curses module could be implemented on Windows with PDCurses?

link|flag
vote up 0 vote down

develop two interfaces for your program, a text console ui and a graphical ui. Make the console one work only on linux. Nobody on windows uses text console apps.

link|flag
1  
+1 Those that do use text console apps on windows use cygwin, which has ncurses. It's always nice if it's possible to separate the UI from the implementation and this gives a nice incentive to do so. – Al Aug 7 at 14:24
2  
If a text UI is sufficient, it would be wasteful to write both text and graphic UIs IMO. – Bastien Léonard Aug 7 at 14:26
well, the people using this app would also use it on windows. especially since they would use it on windows and on linux, so two different interfaces would not be nice to them. plus, i would have to develop two interfaces, which i'd rather not. – andreash Aug 7 at 14:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.