I can't find the ncurses man pages even after:
sudo apt-get install libncurses5-dev
I can't find the ncurses man pages even after:
sudo apt-get install libncurses5-dev
You have to install also ncurses-doc. To install it from terminal run the following command:
sudo apt-get install ncurses-doc
Then you can read the manual page:
man ncurses
You can also get the man page online:
http://manpages.ubuntu.com/ncurses
You can also use this link to search http://manpages.ubuntu.com/cgi-bin/search.py?q=. Just add your search to the end of that address.
Besides the mentioned ncurses-doc package, don't forget to install the examples!
They are priceless... installed at /usr/lib/ncurses/examples and best viewed with dwww
apt source ncurses-examples, it will download ncurses source package containing all source code. Source for the examples can be found at test/ subfolder.
– MestreLion
Aug 15 '18 at 08:06
apt command didn't work for me, but I installed with: git clone https://github.com/gittup/ncurses.git which includes the test/ folder with the source code for the examples.
– builder-7000
Aug 15 '18 at 08:34
apt-get source ncurses if you're using an Ubuntu older than 16.04. Yes, cloning the upstream (original author) repository may solve your problem for ncurses, but a general solution for any Ubuntu package is to grab the source package using apt
– MestreLion
Aug 15 '18 at 13:32
libncurses*packages ;) – MestreLion Mar 11 '15 at 10:19