From 02518bd3c632a04f85e74dc78d92e5a10a60dc0d Mon Sep 17 00:00:00 2001 From: Huckleberry Febbo Date: Thu, 27 Apr 2017 19:34:22 -0400 Subject: [PATCH 1/2] updated warning message for imageMagick to include the case that imagemagick is not installed on the machine --- src/animation.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/animation.jl b/src/animation.jl index ee7428df..59741f79 100644 --- a/src/animation.jl +++ b/src/animation.jl @@ -80,7 +80,9 @@ function buildanimation(animdir::AbstractString, fn::AbstractString; catch err warn("""Tried to create gif using convert (ImageMagick), but got error: $err - ImageMagick can be installed by executing `Pkg.add("ImageMagick")` + ImageMagick needs to be installed in julia and on your machine: + 1) in julia>> `Pkg.add("ImageMagick")` + 2) on your machine (for Ubuntu): $$ sudo apt install imagemagick Will try ffmpeg, but it's lower quality...)""") # low quality From 1d569a08ee69acf87832b8b354642285c67d88e0 Mon Sep 17 00:00:00 2001 From: Huckleberry Febbo Date: Thu, 27 Apr 2017 19:43:58 -0400 Subject: [PATCH 2/2] got ride of 12036 --- src/animation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animation.jl b/src/animation.jl index 59741f79..7cb1b8e4 100644 --- a/src/animation.jl +++ b/src/animation.jl @@ -82,7 +82,7 @@ function buildanimation(animdir::AbstractString, fn::AbstractString; warn("""Tried to create gif using convert (ImageMagick), but got error: $err ImageMagick needs to be installed in julia and on your machine: 1) in julia>> `Pkg.add("ImageMagick")` - 2) on your machine (for Ubuntu): $$ sudo apt install imagemagick + 2) on your machine (in terminal run): sudo apt install imagemagick Will try ffmpeg, but it's lower quality...)""") # low quality