What is the difference between installing curl (sudo apt install curl
) and installing libcurl (sudo apt install libcurl-dev
)
What is the difference between installing curl (sudo apt install curl
) and installing libcurl (sudo apt install libcurl-dev
)
You're asking about
curl
andlibcurl-dev
.curl
is an application, which depends onlibcurl4
to run. You can write other apps than curl to uselibcurl4
.libcurl-dev
is a virtual package, provided by the following packages:So this provides tools and documentation if you want to develop an application that uses
libcurl4
,libcurl3-gnutls
orlibcurl3-nss
. Further information can be found under each package underlibcurl-dev
.