Reputation: 93236
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?
Upvotes: 12
Views: 2679
Reputation: 368351
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.
Upvotes: 16