Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install the ncursesw development libraries

Tags:

linux

ncurses

I'm trying to follow the instructions in

https://github.com/flok99/multitail/blob/master/INSTALL

It says to install the "ncursesw development libraries"

How do I do that?

like image 405
visheshjoshi visheshjoshi Avatar asked Oct 03 '14 21:10

visheshjoshi visheshjoshi


People also ask

Is Ncurses Linux?

Use ncurses in Linux to place text at specific locations on the screen and enable more user-friendly interfaces. Most Linux utilities just scroll text from the bottom of the screen.


1 Answers

It depends on your distro:

On Debian/Ubuntu, sudo apt-get install libncursesw5-dev

On RedHat/Fedora/CentOS, sudo yum install ncurses-devel

like image 120
o11c Avatar answered Oct 10 '22 01:10

o11c