As part of an installation process I am instructed to install libgs10-dev, however I cannot find any reference to this package outside of this installation guide ("Hacking the Kinect", Apress, 2012).
Firstly, what is this package?
Secondly, how can I install this package (apt-get install does not seem to find it)?
This was a typo in the instructions. It should be libgsl0-dev. They erroneously substituted a numeric one for the second letter "l"
Packages called
libSOMETHING-dev
(or sometimesANYTHING-dev
) are development packages, which you need to compile programs from source when the program uses thelibSOMETHING
library. Occasionally the package name itself contains a version number, to allow the simultaneous installation of several version.Ubuntu doesn't have a
libgs10-dev
package, but it haslibgs-dev
. Install that. The same goes for any other package with a version number in its name — try removing or changing the number.libgs relates to scientific computing libraries, which the RGBD demo in the book requires to run computer vision and matrix computations. Basically a linear algebra library.
I have the book as well and it seems libgs10 is a typo - it should be libgsl0 (l for lion, not 1). I simply corrected the typo and it installed beautifully.