Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The "dev" suffix in package names?

When using apt-get I see some packages have a "dev" suffix after their names:

libreadline5
libreadline-dev
zlib1g
zlib1g-dev

What are these exactly and should I install them?

like image 678
never_had_a_name Avatar asked Aug 27 '10 21:08

never_had_a_name


1 Answers

You need these to compile and link as they provide headers and libraries to link whereas the standard packages just contain the run-time versions.

like image 191
Dirk Eddelbuettel Avatar answered Oct 23 '22 08:10

Dirk Eddelbuettel