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
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
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