Based on this stackoverflow post: http://stackoverflow.com/questions/3701 ... recognized
I installed a previous of ImageMagick because the current release doesn't work with wand.image, one of the dependencies for Pyocr (an OCR library for Python).
I got the .tar.gz from here: https://launchpad.net/imagemagick/+milestone/6.9.3-9
This is the output of convert -version
Code: Select all
Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-03-14 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib
Code: Select all
./configure
make
make install
make check
Code: Select all
FAIL: Magick++/demo/demos.tap 6
FAIL: tests/wandtest.tap 1
Code: Select all
import wand.image
Code: Select all
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
apt-get install libmagickwand-dev