o apt-get is more likely to be installed than aptitude, so use

that in install examples.
This commit is contained in:
Henner Zeller 2016-05-06 07:59:00 -07:00
parent 584bde5ee5
commit d7d33e9dd6
2 changed files with 3 additions and 2 deletions

View file

@ -250,7 +250,8 @@ One of the possibly useful demo applications is an image viewer that
reads all kinds of image formats, including animated gifs. It is not compiled
by default, as you need to install the GraphicsMagick dependencies first:
sudo aptitude install libgraphicsmagick++-dev libwebp-dev
sudo apt-get update
sudo apt-get install libgraphicsmagick++-dev libwebp-dev
make led-image-viewer
Then, you can run it with any common image format, including animated gifs:

View file

@ -14,7 +14,7 @@
// along with this program. If not, see <http://gnu.org/licenses/gpl-2.0.txt>
// To use this image viewer, first get image-magick development files
// $ sudo aptitude install libmagick++-dev
// $ sudo apt-get install libgraphicsmagick++-dev libwebp-dev
//
// Then compile with
// $ make led-image-viewer