diff --git a/README.md b/README.md index 7337640..d03d3bd 100755 --- a/README.md +++ b/README.md @@ -21,10 +21,18 @@ GETs all the books in the database /api/book/id GETs a specific book by its id - +## Installation Further installnotes (bugs) -* For Macusers -> brew install imagemagick@6 in order to install wand * create the covers folder inside the uploadsfolder -* don't forget to chmod the uploads and coverfolder ;-) \ No newline at end of file +* don't forget to chmod the uploads and coverfolder ;-) + +* For Macusers -> brew install imagemagick@6 in order to install wand + +For those on mac and using homebrew, it seems like Wand doesn't support imagemagick 7 yet as mentioned in other answers. +There's a new brew formula for Imagemagick 6 which can be used to install the older version in the meanwhile: +brew install imagemagick@6 +Create a symlink to this newly installed dylib file as mentioned in other answer to get things working. +ln -s /usr/local/Cellar/imagemagick@6//lib/libMagickWand-6.Q16.dylib /usr/local/lib/libMagickWand.dylib +