How to install missing curl man pages in Ubuntu?
Posted by Joys of Programming on in C/C++
curl is very useful for the data transfer between the client and the server. Curl is available both as a command line tool as well as for programming purposes. In case of working with curl, you may require man pages and if your curl man pages are missing, you must install the concerned package
$ man curl_easy_init No manual entry for curl_easy_init
To install the man pages of curl (programming) in Ubuntu
$ sudo apt-get install libcurl4-gnutls-dev
Comments: