Newbie: How Can I Print To Specific Screen Locations.

Huaiyu Zhu hzhu at users.sourceforge.net
Thu Oct 5 17:26:28 EDT 2000


On Thu, 05 Oct 2000 19:50:36 GMT, jbranthoover at my-deja.com
<jbranthoover at my-deja.com> wrote: 

>Hello Matt,
>	Thanks for the quick response.  I have heard of the curses
>module.  Unfortunately,  it is not built by default and at this point I
>do not have the skills to compile it myself.  I do have the tools but
>not the know how.  Do you know of any “how to guides” for compiling
>python using the GCC compiler?  If you have any other suggestions
>please let me know and thanks again



If you have gcc, you might also have a shell (bash on Linux, other Unix
shells or CygWin in Windows) and make.  Get the source. Untar.  Edit
Modules/Setup - find and uncomment the line

_curses _cursesmodule.c -lcurses -ltermcap

Then ./configure; make; make install (follow the instructions that come with
the source).  You have to have curses library installed, though, which is
default on most unices.  

I use the curses module in Python and it's quite easy.

Huaiyu




More information about the Python-list mailing list