could not open terminal for stdout

-3

I'm having a problem with gradle when running any command and the following error message is returned:     

* What went wrong:
     Could not open terminal for stdout: could not get termcap entry

View error in pastebin link

    
asked by anonymous 10.05.2018 / 14:19

1 answer

0

Apparently this is a problem with a lib called ncurses5-compat-libs , which interferes with the normal operation of Gradle. Try to uninstall it and run some Gradle command again.

If it does not work, set the system variable TERM to xterm-color :

export TERM=xterm-color

Source: link

    
10.05.2018 / 17:35