Setupterm could not find terminal, in Python program using curses

You must set enviroment variables TERM and TERMINFO, like this:

export TERM=linux
export TERMINFO=/etc/terminfo

And, if you device have no this dir (/etc/terminfo), make it, and copy terminfo database.

For “linux”, and “pcansi” terminals you can download database:

Leave a Comment